diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-16 13:03:19 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-16 13:03:19 -0400 |
commit | f166b2303a96a5e65e235139291df93b2b24bc3e (patch) | |
tree | 556e787bfc6ed1c9891aec9023ce4f8caf589958 /lib | |
parent | 3db86a30644d3eb3a964202dbfd7e91c432bda7b (diff) |
kernel,libc: syscall: Improve syscall code
- Remove the SYS_debug syscall
- First syscall starts at 1
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/include/sys/syscall.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libc/include/sys/syscall.h b/lib/libc/include/sys/syscall.h index b5e5fc2..34f762d 100644 --- a/lib/libc/include/sys/syscall.h +++ b/lib/libc/include/sys/syscall.h @@ -34,7 +34,6 @@ #include <stdint.h> #endif -#define SYS_debug 0 #define SYS_exit 1 #if !defined(__ASSEMBLER__) |