diff options
author | Ian Moffett <ian@osmora.org> | 2025-03-28 01:15:51 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-03-28 01:15:51 -0400 |
commit | bb7b317966f1110d2dbd49cbf53e53832ab3821b (patch) | |
tree | bfc17ea76348550a84d529f1e9ff0e595cfec9e1 /lib/libc/src | |
parent | 1ebf78d4bba1b50415677a25ea1e1a3a058a2b73 (diff) |
sys: Make proper sys/types.h + add clang nostdincexpt
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/libc/src')
-rw-r--r-- | lib/libc/src/unistd/open.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/src/unistd/open.c b/lib/libc/src/unistd/open.c index 0131785..85b9710 100644 --- a/lib/libc/src/unistd/open.c +++ b/lib/libc/src/unistd/open.c @@ -28,6 +28,7 @@ */ #include <sys/syscall.h> +#include <sys/types.h> #include <fcntl.h> int |