mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
phobos 0.76
This commit is contained in:
parent
fa1bc52ba2
commit
35a12fec2f
51 changed files with 761 additions and 183 deletions
15
std/process.d
Normal file
15
std/process.d
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
// Copyright (c) 2003 by Digital Mars
|
||||
// All Rights Reserved
|
||||
// www.digitalmars.com
|
||||
|
||||
|
||||
module std.process;
|
||||
|
||||
private import std.string;
|
||||
private import std.c.process;
|
||||
|
||||
int system(char[] command)
|
||||
{
|
||||
return std.c.process.system(toStringz(command));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue