aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/env.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/env.cpp')
-rw-r--r--src/env.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/env.cpp b/src/env.cpp
index 56c9deb0..22d4c573 100644
--- a/src/env.cpp
+++ b/src/env.cpp
@@ -1,8 +1,6 @@
/** \file env.c
Functions for setting and getting environment variables.
*/
-#include "config.h" // IWYU pragma: keep
-
#include <stdlib.h>
#include <wchar.h>
#include <locale.h>
@@ -19,10 +17,11 @@
#include <wctype.h>
#include <utility>
#include <vector>
+#include <sys/types.h>
+#include <stdbool.h>
-#include "fallback.h"
-
-#include "wutil.h"
+#include "fallback.h" // IWYU pragma: keep
+#include "wutil.h" // IWYU pragma: keep
#include "proc.h"
#include "common.h"
#include "env.h"
@@ -34,8 +33,8 @@
#include "input.h"
#include "event.h"
#include "path.h"
-
#include "fish_version.h"
+#include "input_common.h"
/** Value denoting a null string */
#define ENV_NULL L"\x1d"