X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=include%2Funistd.h;h=f819429e8d008cd22809df8c26d93d0ddb8c90fb;hb=1c1aa32eea467b2ed43b457b5528713933b32e95;hp=b9e48149677ddcfb09f031680d0815bf8e3c0a4f;hpb=1d729537873f70da83f2608e7529aad887cf13c1;p=musl diff --git a/include/unistd.h b/include/unistd.h index b9e48149..f819429e 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -86,6 +86,7 @@ int execle(const char *, ...); int execl(const char *, ...); int execvp(const char *, char *const []); int execlp(const char *, ...); +int fexecve(int, char *const [], char *const []); void _exit(int); pid_t getpid(void); @@ -144,6 +145,8 @@ void sync(void); #endif #ifdef _GNU_SOURCE +int brk(void *); +void *sbrk(intptr_t); pid_t vfork(void); int vhangup(void); int chroot(const char *);