From 0f5262917fab34b44b43f63946fdf6bb0621875a Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 19 Sep 2020 13:55:23 +0200 Subject: Make all required includes explicit Information as seen by IWYU 0.12 + clang 9 on Linux --- CRT.c | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'CRT.c') diff --git a/CRT.c b/CRT.c index 2f9eb2b6..d3afd0ec 100644 --- a/CRT.c +++ b/CRT.c @@ -5,28 +5,26 @@ Released under the GNU GPLv2, see the COPYING file in the source distribution for its full text. */ -#include "config.h" -#include "CRT.h" +#include "config.h" // IWYU pragma: keep -#include "RichString.h" -#include "XUtils.h" +#include "CRT.h" -#include #include +#include +#include #include +#include #include #include -#include -#include #include +#include "ProvideCurses.h" +#include "XUtils.h" + #ifdef HAVE_EXECINFO_H #include #endif -#ifdef HAVE_SETUID_ENABLED -#include -#endif #define ColorIndex(i,j) ((7-(i))*8+(j)) -- cgit v1.2.3