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/setbuf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/libc/stdio/setbuf.c') diff --git a/lib/libc/stdio/setbuf.c b/lib/libc/stdio/setbuf.c index ddddf4ac..48d15c51 100644 --- a/lib/libc/stdio/setbuf.c +++ b/lib/libc/stdio/setbuf.c @@ -1,4 +1,6 @@ -#include // for setvbuf, BUFSIZ, FILE, NULL, _IOFBF, _IONBF, setbuf +#include "stddef.h" // for NULL + +#include // for setvbuf, BUFSIZ, FILE, _IOFBF, _IONBF, setbuf void setbuf(FILE *restrict stream, char *restrict buf) { -- cgit v1.2.3