mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
15 lines
250 B
D
15 lines
250 B
D
|
|
// 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));
|
|
}
|