diff options
author | dzwdz | 2023-09-25 00:16:12 +0200 |
---|---|---|
committer | dzwdz | 2023-09-25 00:16:12 +0200 |
commit | 681470cf98a6e512627e67620b39c090b9e98aba (patch) | |
tree | f2d9215d57cd1787df7e37baa9cfba00a7ed912b /src/libc/syscall.c | |
parent | 2c78dc983d09e136dd016ae6ecee6b191e033de1 (diff) |
kernel: remove _sys_filicide (made redundant by _sys_intr)
Diffstat (limited to 'src/libc/syscall.c')
-rw-r--r-- | src/libc/syscall.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libc/syscall.c b/src/libc/syscall.c index 782b2fe..8142028 100644 --- a/src/libc/syscall.c +++ b/src/libc/syscall.c @@ -66,10 +66,6 @@ void _sys_sleep(long ms) { return (void)_syscall(_SYS_SLEEP, ms, 0, 0, 0, 0); } -void _sys_filicide(void) { - return (void)_syscall(_SYS_FILICIDE, 0, 0, 0, 0, 0); -} - int _sys_intr(const char __user *msg, size_t len) { return (int)_syscall(_SYS_INTR, (long)msg, (long)len, 0, 0, 0); } |