aboutsummaryrefslogtreecommitdiff
path: root/src/features/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-05 18:28:26 +0200
committerMarvin Borner2020-08-05 18:28:26 +0200
commit4af62bb53676b7f721b46cabee78cac3a557e924 (patch)
treeb9c7e615c3226d9822c22cdb6cdb326f379db73f /src/features/syscall.c
parentb7f59b28b380d55f9e7abd8e450f1f9c7f050221 (diff)
Some proc things
Diffstat (limited to 'src/features/syscall.c')
-rw-r--r--src/features/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/features/syscall.c b/src/features/syscall.c
index ab1849c..c3a758a 100644
--- a/src/features/syscall.c
+++ b/src/features/syscall.c
@@ -13,7 +13,7 @@ void syscall_handler(struct regs *r)
bin_load("/a", a);
}
-void syscall_install()
+void syscall_init()
{
isr_install_handler(0x80, syscall_handler);
}