From 169daa11155988a210fac949297381743f3cb400 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 23:14:53 +0100 Subject: feat: clang-tidy fixes --- lib/libc/stdio/stderr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/libc/stdio/stderr.c') diff --git a/lib/libc/stdio/stderr.c b/lib/libc/stdio/stderr.c index 155f0e3e..ec115fd0 100644 --- a/lib/libc/stdio/stderr.c +++ b/lib/libc/stdio/stderr.c @@ -2,6 +2,7 @@ #include "stdatomic.h" // for ATOMIC_FLAG_INIT #include // for O_WRONLY +#include // for FILE, stderr #include // for STDERR_FILENO #define BUFSIZ 4096 @@ -19,4 +20,4 @@ struct __FILE __stderr = { .fd = STDERR_FILENO, .offset = 0, .lock = ATOMIC_FLAG_INIT }; -struct FILE *const stderr = (struct FILE *)&__stderr; +FILE *const stderr = (FILE *)&__stderr; -- cgit v1.2.3