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/pclose.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdio/pclose.c') diff --git a/lib/libc/stdio/pclose.c b/lib/libc/stdio/pclose.c index 241d4de0..a515981c 100644 --- a/lib/libc/stdio/pclose.c +++ b/lib/libc/stdio/pclose.c @@ -1,4 +1,4 @@ -#include // for __IMPL +#include <__stdio.h> // for __FILE #include // for fclose, FILE, pclose #include // for waitpid @@ -6,5 +6,5 @@ int pclose(FILE *stream) { int stat; fclose(stream); - return (waitpid(__IMPL(stream)->pid, &stat, 0) < 0) ? -1 : stat; + return (waitpid(__FILE(stream)->pid, &stat, 0) < 0) ? -1 : stat; } -- cgit v1.2.3