summaryrefslogtreecommitdiffstats
path: root/tools/include
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-04-13 17:26:32 +0100
committerPaul E. McKenney <paulmck@kernel.org>2023-06-09 11:45:34 -0700
commit3a8039e289a337aeaa9ad37f3fcd411d83fee983 (patch)
treee99f69411787d888bdb1ae0a7af4eb450da84056 /tools/include
parent69f2cd9fea01a21259d361e839efd02cba7fe945 (diff)
downloadlinux-stable-3a8039e289a337aeaa9ad37f3fcd411d83fee983.tar.gz
linux-stable-3a8039e289a337aeaa9ad37f3fcd411d83fee983.tar.bz2
linux-stable-3a8039e289a337aeaa9ad37f3fcd411d83fee983.zip
tools/nolibc: Fix build of stdio.h due to header ordering
When we added fd based file streams we created references to STx_FILENO in stdio.h but these constants are declared in unistd.h which is the last file included by the top level nolibc.h meaning those constants are not defined when we try to build stdio.h. This causes programs using nolibc.h to fail to build. Reorder the headers to avoid this issue. Fixes: d449546c957f ("tools/nolibc: implement fd-based FILE streams") Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Willy Tarreau <w@1wt.eu> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'tools/include')
-rw-r--r--tools/include/nolibc/nolibc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/include/nolibc/nolibc.h b/tools/include/nolibc/nolibc.h
index 04739a6293c4..05a228a6ee78 100644
--- a/tools/include/nolibc/nolibc.h
+++ b/tools/include/nolibc/nolibc.h
@@ -99,11 +99,11 @@
#include "sys.h"
#include "ctype.h"
#include "signal.h"
+#include "unistd.h"
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include "time.h"
-#include "unistd.h"
#include "stackprotector.h"
/* Used by programs to avoid std includes */