From f3c7d7fbdea1f2bac81909116ddb747a1f8abdf5 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Wed, 22 Nov 2023 00:47:55 +0100 Subject: 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. --- userland/libc/include/stdio.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'userland/libc/include/stdio.h') diff --git a/userland/libc/include/stdio.h b/userland/libc/include/stdio.h index aafae78..43700e0 100644 --- a/userland/libc/include/stdio.h +++ b/userland/libc/include/stdio.h @@ -3,6 +3,7 @@ #include #include #include +#include // FIXME: Most of these should probably not be here. But I am too lazy // to fix it right now. This is futures mees problem to deal wth. @@ -56,8 +57,6 @@ extern FILE *__stderr_FILE; #define stdout __stdout_FILE #define stderr __stderr_FILE -typedef int mode_t; - void perror(const char *s); int putchar(int c); -- cgit v1.2.3