diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-23 17:28:26 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-23 17:28:26 -0400 |
commit | 082c028624b0f16699d4ea4bd7909c8646598688 (patch) | |
tree | d9ed3617fbc647740c62e0f39fd93b64109f8a13 /src/sys/include/compat | |
parent | 0d2c8a069ac2fddf44c7f1746095114fc2626df2 (diff) |
usr: libc: Add libc syscall interface
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/include/compat')
-rw-r--r-- | src/sys/include/compat/unix/syscall.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/sys/include/compat/unix/syscall.h b/src/sys/include/compat/unix/syscall.h index a3e7257..88c86ba 100644 --- a/src/sys/include/compat/unix/syscall.h +++ b/src/sys/include/compat/unix/syscall.h @@ -35,17 +35,6 @@ #include <sys/syscall.h> /* - * Default syscall numbers - * - * Defines marked as (mandatory) must be implemented - * between latches. - */ -#define SYS_none 0x00 -#define SYS_exit 0x01 -#define SYS_write 0x02 -#define SYS_cross 0x03 /* cross a border (mandatory) */ - -/* * Exit the current process - exit(2) syscall */ scret_t sys_exit(struct syscall_args *scargs); |