summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-19 01:02:46 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-19 01:02:46 -0500
commitb386d8186226f28e1b610be657a89e357768efa1 (patch)
tree68c3d2ecbf528f77f148af7504eee2208b161c03
parentad2fe25041622b6cf426b0f98af0e52c2c9727f6 (diff)
downloadmusl-b386d8186226f28e1b610be657a89e357768efa1.tar.gz
prototypes for brk and sbrk
-rw-r--r--include/unistd.h2
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 *);