diff options
author | Marvin Borner | 2021-02-25 17:42:46 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 17:42:46 +0100 |
commit | 34885f1c73824a0fe47aa095e9d55a57021239d2 (patch) | |
tree | b59dfe47069d1f42bd8123e647fadf74bff835a6 /kernel/features/syscall.c | |
parent | b85ba196c47920b9d1b6622718a34f8f6f23bef3 (diff) |
Added *many* static keywords
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index 9f05471..538fd59 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -10,9 +10,10 @@ #include <proc.h> #include <str.h> #include <sys.h> +#include <syscall.h> #include <timer.h> -void syscall_handler(struct regs *r) +static void syscall_handler(struct regs *r) { enum sys num = r->eax; r->eax = 0; |