summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/unistd/fork.c')
-rw-r--r--lib/libc/unistd/fork.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libc/unistd/fork.c b/lib/libc/unistd/fork.c
new file mode 100644
index 00000000..38657406
--- /dev/null
+++ b/lib/libc/unistd/fork.c
@@ -0,0 +1,6 @@
+#include <unistd.h>
+
+pid_t fork(void)
+{
+ return _Fork();
+}