diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-19 01:02:46 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-19 01:02:46 -0500 |
commit | b386d8186226f28e1b610be657a89e357768efa1 (patch) | |
tree | 68c3d2ecbf528f77f148af7504eee2208b161c03 /include/unistd.h | |
parent | ad2fe25041622b6cf426b0f98af0e52c2c9727f6 (diff) | |
download | musl-b386d8186226f28e1b610be657a89e357768efa1.tar.gz musl-b386d8186226f28e1b610be657a89e357768efa1.tar.bz2 musl-b386d8186226f28e1b610be657a89e357768efa1.tar.xz musl-b386d8186226f28e1b610be657a89e357768efa1.zip |
prototypes for brk and sbrk
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index b9e48149..c0994af4 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -144,6 +144,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 *); |