diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-07 15:34:53 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-07 15:34:53 -0400 |
commit | 83ccba4afb141c236c0aeaf3e1ddaeb9e9b07d73 (patch) | |
tree | 84b843706b206c28be8251b4dd1e8ffe31e6cfb0 /src/sys/include | |
parent | 8d1179f42dae65756a42add84342817275b8adcd (diff) |
kern: syscall: Add SYS_open to syscall table
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include')
-rw-r--r-- | src/sys/include/compat/unix/syscall.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 */ |