diff options
Diffstat (limited to 'src/unistd/sbrk.c')
| -rw-r--r-- | src/unistd/sbrk.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unistd/sbrk.c b/src/unistd/sbrk.c new file mode 100644 index 00000000..69f88cf2 --- /dev/null +++ b/src/unistd/sbrk.c @@ -0,0 +1,10 @@ +#include <unistd.h> + +void *sbrk(int incr) +{ + return 0; +} + +/* +XOPEN(400,600) +*/ |
