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/feof.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc/stdio/feof.c') diff --git a/lib/libc/stdio/feof.c b/lib/libc/stdio/feof.c index f8478d03..f9245d06 100644 --- a/lib/libc/stdio/feof.c +++ b/lib/libc/stdio/feof.c @@ -1,12 +1,12 @@ #include "stddef.h" // for NULL -#include // for __IMPL -#include // for FILE, feof +#include <__stdio.h> // for __FILE +#include // for FILE, feof int feof(FILE *stream) { if (stream == NULL) return 0; - return __IMPL(stream)->eof; + return (__FILE(stream))->eof; } -- cgit v1.2.3