From ac49dbab1e0aa861c8bf0b1f548945963502ccf0 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sun, 8 Jan 2023 00:49:17 +0100 Subject: kernel: remove the leftover _syscall_procfs --- src/user/lib/syscall.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/user/lib') diff --git a/src/user/lib/syscall.c b/src/user/lib/syscall.c index 09b8e49..50c71a8 100644 --- a/src/user/lib/syscall.c +++ b/src/user/lib/syscall.c @@ -70,10 +70,6 @@ void _syscall_sleep(long ms) { return (void)_syscall(_SYSCALL_SLEEP, ms, 0, 0, 0, 0); } -handle_t _syscall_procfs(void) { - return (handle_t)_syscall(_SYSCALL_PROCFS, 0, 0, 0, 0, 0); -} - long _syscall_execbuf(void __user *buf, size_t len) { return _syscall(_SYSCALL_EXECBUF, (long)buf, (long)len, 0, 0, 0); } -- cgit v1.2.3