mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 08:30:33 +03:00
phobos 0.129
This commit is contained in:
parent
8ee5d51c15
commit
071f592aa2
7 changed files with 131 additions and 50 deletions
|
@ -8,6 +8,7 @@ module std.c.linux.linux;
|
|||
|
||||
import std.c.linux.linuxextern;
|
||||
|
||||
alias int pid_t;
|
||||
alias int off_t;
|
||||
alias uint mode_t;
|
||||
|
||||
|
@ -118,6 +119,12 @@ extern (C)
|
|||
int rmdir(char*);
|
||||
char* getcwd(char*, int);
|
||||
int chmod(char*, mode_t);
|
||||
int fork();
|
||||
int dup(int);
|
||||
int dup2(int, int);
|
||||
int pipe(int[2]);
|
||||
pid_t wait(int*);
|
||||
int waitpid(pid_t, int*, int);
|
||||
}
|
||||
|
||||
struct timeval
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue