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/stdlib/unsetenv.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lib/libc/stdlib/unsetenv.c') diff --git a/lib/libc/stdlib/unsetenv.c b/lib/libc/stdlib/unsetenv.c index 4eb11d57..bce55e97 100644 --- a/lib/libc/stdlib/unsetenv.c +++ b/lib/libc/stdlib/unsetenv.c @@ -1,6 +1,8 @@ -#include -#include -#include +#include "stddef.h" // for NULL + +#include // for EINVAL, errno +#include // for setenv, unsetenv +#include // for strchr int unsetenv(const char *name) { -- cgit v1.2.3