From aa8a8811818331cf511681327e3ba95e456f0d33 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Sat, 2 May 2020 15:44:11 +0200
Subject: Added many syscalls to get better POSIX compliance

---
 src/userspace/libc/unistd/fork.c | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 src/userspace/libc/unistd/fork.c

(limited to 'src/userspace/libc/unistd/fork.c')

diff --git a/src/userspace/libc/unistd/fork.c b/src/userspace/libc/unistd/fork.c
new file mode 100644
index 0000000..6ca054a
--- /dev/null
+++ b/src/userspace/libc/unistd/fork.c
@@ -0,0 +1,7 @@
+#include <stdint.h>
+#include <syscall.h>
+
+u32 fork()
+{
+	return syscall_fork();
+}
\ No newline at end of file
-- 
cgit v1.2.3