From a698100de320ae0e68548b9b1deb90431482db96 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Sun, 19 Dec 2021 17:24:25 +0800 Subject: [PATCH] sched: Remove the condition guard from environ macro Signed-off-by: Xiang Xiao --- include/stdlib.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/stdlib.h b/include/stdlib.h index 690ac4c13d..81e939670d 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -62,9 +62,7 @@ * function call. However, get_environ_ptr() can be used in its place. */ -#ifndef CONFIG_DISABLE_ENVIRON -# define environ get_environ_ptr() -#endif +#define environ get_environ_ptr() #if defined(CONFIG_FS_LARGEFILE) && defined(CONFIG_HAVE_LONG_LONG) # define mkstemp64 mkstemp