diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-15 18:24:54 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-15 18:24:54 +0100 |
| commit | 69e6fe89fa9baafeca3e3515bb50897cd8ee7c35 (patch) | |
| tree | 489046ce167b8b20d205f87f4ae1f4b680c19b43 /lib/libc/stdio/stdout.c | |
| parent | 0d5bffe9d2caadc1215c875e560c52bca5161c54 (diff) | |
Add getauxval and cleanup libc startup
Diffstat (limited to 'lib/libc/stdio/stdout.c')
| -rw-r--r-- | lib/libc/stdio/stdout.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdio/stdout.c b/lib/libc/stdio/stdout.c index 14637368..471a54b9 100644 --- a/lib/libc/stdio/stdout.c +++ b/lib/libc/stdio/stdout.c @@ -1,11 +1,10 @@ -#include "__stdio.h" // for __FILE, __libc_fadd -#include "features.h" // for __weak -#include "stdatomic.h" // for ATOMIC_FLAG_INIT, atomic_flag +#include "__stdio.h" // for __FILE, __libc_fadd #include <atomic.h> // for LIBC_LOCK, LIBC_UNLOCK #include <fcntl.h> // for O_WRONLY #include <stddef.h> // for NULL #include <stdio.h> // for stdout +#include <sys/cdefs.h> #include <unistd.h> // for STDOUT_FILENO #define BUFSIZ 4096 |
