summaryrefslogtreecommitdiffstats
path: root/InfoScreen.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-09-19 13:55:23 +0200
committerBenny Baumann <BenBE@geshi.org>2020-10-18 20:09:05 +0200
commit0f5262917fab34b44b43f63946fdf6bb0621875a (patch)
tree07e449767f00310ef038d786688f891600a01b4d /InfoScreen.c
parent29346d05616ce69e5988b3f1257c340f91299602 (diff)
Make all required includes explicit
Information as seen by IWYU 0.12 + clang 9 on Linux
Diffstat (limited to 'InfoScreen.c')
-rw-r--r--InfoScreen.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/InfoScreen.c b/InfoScreen.c
index ed890f7d..0c666234 100644
--- a/InfoScreen.c
+++ b/InfoScreen.c
@@ -1,18 +1,19 @@
+#include "config.h" // IWYU pragma: keep
+
#include "InfoScreen.h"
-#include "config.h"
-#include "Object.h"
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
#include "CRT.h"
#include "IncSet.h"
#include "ListItem.h"
-#include "Platform.h"
+#include "Object.h"
+#include "ProvideCurses.h"
#include "XUtils.h"
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-#include <stdarg.h>
-
static const char* const InfoScreenFunctions[] = {"Search ", "Filter ", "Refresh", "Done ", NULL};

© 2014-2024 Faster IT GmbH | imprint | privacy policy