From 09a66e91ec9e8a677aa48f27798753084f213713 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Sat, 9 May 2020 17:39:31 +0200
Subject: Replaced fork() with spawn()!

Who needs forks anyway
---
 src/userspace/libc/unistd/fork.c | 7 -------
 1 file changed, 7 deletions(-)
 delete 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
deleted file mode 100644
index 6ca054a..0000000
--- a/src/userspace/libc/unistd/fork.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include <stdint.h>
-#include <syscall.h>
-
-u32 fork()
-{
-	return syscall_fork();
-}
\ No newline at end of file
-- 
cgit v1.2.3