diff options
Diffstat (limited to 'test/sbrk.c')
-rw-r--r-- | test/sbrk.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/sbrk.c b/test/sbrk.c new file mode 100644 index 0000000..c8bfca7 --- /dev/null +++ b/test/sbrk.c @@ -0,0 +1,15 @@ +/* sbrk() requires <stdlib.h> */ + +/* + * Items: sbrk( + * Requires: <unistd.h> + * Standardized-By: SuS + * Not-Detected-by: gcc-4.4.3 + Linux + */ + +#include <unistd.h> + +main(int arg, char **argv) +{ + sbrk(23); +} |