From f166b2303a96a5e65e235139291df93b2b24bc3e Mon Sep 17 00:00:00 2001
From: Ian Moffett <ian@osmora.org>
Date: Sat, 16 Mar 2024 13:03:19 -0400
Subject: kernel,libc: syscall: Improve syscall code

- Remove the SYS_debug syscall
- First syscall starts at 1

Signed-off-by: Ian Moffett <ian@osmora.org>
---
 sys/include/sys/syscall.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

(limited to 'sys/include')

diff --git a/sys/include/sys/syscall.h b/sys/include/sys/syscall.h
index 03eda0b..66dc5f3 100644
--- a/sys/include/sys/syscall.h
+++ b/sys/include/sys/syscall.h
@@ -37,8 +37,7 @@
 
 /* Do not reorder */
 enum {
-    SYS_debug = 0,
-    SYS_exit,
+    SYS_exit = 1,
     __MAX_SYSCALLS
 };
 
-- 
cgit v1.2.3