summaryrefslogtreecommitdiff
path: root/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'syscall.c')
-rw-r--r--syscall.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/syscall.c b/syscall.c
index 71c369c..0918da7 100644
--- a/syscall.c
+++ b/syscall.c
@@ -99,15 +99,7 @@ extern int sys_wait(void);
extern int sys_write(void);
extern int sys_uptime(void);
-int
-sys_init(void)
-{
- initlog();
- return 0;
-}
-
static int (*syscalls[])(void) = {
-[SYS_init] sys_init,
[SYS_fork] sys_fork,
[SYS_exit] sys_exit,
[SYS_wait] sys_wait,
@@ -122,7 +114,6 @@ static int (*syscalls[])(void) = {
[SYS_sbrk] sys_sbrk,
[SYS_sleep] sys_sleep,
[SYS_uptime] sys_uptime,
-// File system calls that are run in a transaction:
[SYS_open] sys_open,
[SYS_write] sys_write,
[SYS_mknod] sys_mknod,