aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/bsd/sbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mlibc/tests/bsd/sbrk.c')
-rw-r--r--lib/mlibc/tests/bsd/sbrk.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/mlibc/tests/bsd/sbrk.c b/lib/mlibc/tests/bsd/sbrk.c
deleted file mode 100644
index 88b0407..0000000
--- a/lib/mlibc/tests/bsd/sbrk.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <assert.h>
-#include <stdio.h>
-#include <unistd.h>
-
-int main() {
- void *ret = sbrk(0);
- assert(ret != (void *) -1);
- assert(ret);
-}