diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index 94ea778..23c8d37 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -132,6 +132,11 @@ static void syscall_handler(struct regs *r) break; } + case SYS_MIN: + case SYS_MAX: + r->eax = -EINVAL; + break; + // TODO: Reimplement network functions using VFS default: { r->eax = -EINVAL; |