summaryrefslogtreecommitdiffstats
path: root/OpenFilesScreen.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 /OpenFilesScreen.c
parent29346d05616ce69e5988b3f1257c340f91299602 (diff)
Make all required includes explicit
Information as seen by IWYU 0.12 + clang 9 on Linux
Diffstat (limited to 'OpenFilesScreen.c')
-rw-r--r--OpenFilesScreen.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/OpenFilesScreen.c b/OpenFilesScreen.c
index 8e099bbe..0de9ee03 100644
--- a/OpenFilesScreen.c
+++ b/OpenFilesScreen.c
@@ -5,24 +5,24 @@ Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text.
*/
-#include "OpenFilesScreen.h"
+#include "config.h" // IWYU pragma: keep
-#include "CRT.h"
-#include "ProcessList.h"
-#include "IncSet.h"
-#include "FunctionBar.h"
-#include "XUtils.h"
+#include "OpenFilesScreen.h"
-#include <string.h>
+#include <fcntl.h>
#include <stdio.h>
-#include <unistd.h>
-#include <stdbool.h>
-#include <unistd.h>
#include <stdlib.h>
-#include <fcntl.h>
+#include <string.h>
+#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
+#include "Macros.h"
+#include "Panel.h"
+#include "ProvideCurses.h"
+#include "Vector.h"
+#include "XUtils.h"
+
typedef struct OpenFiles_Data_ {
char* data[7];

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