From 83ccba4afb141c236c0aeaf3e1ddaeb9e9b07d73 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 7 Oct 2025 15:34:53 -0400 Subject: kern: syscall: Add SYS_open to syscall table Signed-off-by: Ian Moffett --- src/sys/include/compat/unix/syscall.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/sys/include/compat/unix/syscall.h b/src/sys/include/compat/unix/syscall.h index 14088f4..5945f75 100644 --- a/src/sys/include/compat/unix/syscall.h +++ b/src/sys/include/compat/unix/syscall.h @@ -68,7 +68,8 @@ scret_t(*g_unix_sctab[])(struct syscall_args *) = { [SYS_cross] = sys_cross, [SYS_query] = sys_query, [SYS_spawn] = sys_spawn, - [SYS_mount] = sys_mount + [SYS_mount] = sys_mount, + [SYS_open] = sys_open }; #endif /* !_NEED_UNIX_SCTAB */ -- cgit v1.2.3