diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-18 22:34:02 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-18 22:39:12 -0400 |
commit | 95254cf6c7604d9751fa1417b0b48a6710739a09 (patch) | |
tree | 511eb5c449134cd69485991865213c378a11cb92 | |
parent | 4a9edffc5d915413e32ae43c955d57b162743f20 (diff) |
kernel: syscall: Fix conditional includes
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/include/sys/syscall.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/include/sys/syscall.h b/sys/include/sys/syscall.h index afe7c2d..3f3a8b3 100644 --- a/sys/include/sys/syscall.h +++ b/sys/include/sys/syscall.h @@ -33,9 +33,8 @@ #if !defined(__ASSEMBLER__) #include <sys/types.h> #include <sys/cdefs.h> -#else #include <machine/syscall.h> -#endif /* !__ASSEMBLER__ */ +#endif #define SYS_none 0 #define SYS_exit 1 |