index
:
c
master
non-posix
implementation of system interfaces from POSIX.1
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
unistd
/
sbrk.c
blob: 69f88cf211c6626b308c784281681dc1096d4944 (
plain
)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h> void *sbrk(int incr) { return 0; } /* XOPEN(400,600) */