diff options
author | Anton Kling <anton@kling.gg> | 2023-11-22 00:47:55 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-22 00:47:55 +0100 |
commit | f3c7d7fbdea1f2bac81909116ddb747a1f8abdf5 (patch) | |
tree | 62a1d998ce11bf4db4343f69dea4e8d231191e48 /userland/libc/include/syscall.h | |
parent | 24f81104f5ff9cb4ab7db766c53f77fe0e5b86cc (diff) |
Meta: Cleanup of header files such that they are partially shared
The /include directory contains definitons that both the kernel and libc
need to be in sync.
Diffstat (limited to 'userland/libc/include/syscall.h')
-rw-r--r-- | userland/libc/include/syscall.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index 135c669..c09eafb 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -55,8 +55,6 @@ extern int errno; return c; \ } -typedef int mode_t; - typedef struct SYS_OPEN_PARAMS { const char *file; int flags; |