aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/unistd/spawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/libc/unistd/spawn.c')
-rw-r--r--src/userspace/libc/unistd/spawn.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/userspace/libc/unistd/spawn.c b/src/userspace/libc/unistd/spawn.c
new file mode 100644
index 0000000..91ed340
--- /dev/null
+++ b/src/userspace/libc/unistd/spawn.c
@@ -0,0 +1,7 @@
+#include <stdint.h>
+#include <syscall.h>
+
+u32 spawn(char *path)
+{
+ return syscall_spawn(path);
+} \ No newline at end of file