summaryrefslogtreecommitdiff
path: root/src/unistd/brk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/brk.c')
-rw-r--r--src/unistd/brk.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unistd/brk.c b/src/unistd/brk.c
new file mode 100644
index 00000000..a836772a
--- /dev/null
+++ b/src/unistd/brk.c
@@ -0,0 +1,10 @@
+#include <unistd.h>
+
+int brk(void *addr)
+{
+ return 0;
+}
+
+/*
+XOPEN(400,600)
+*/