aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/autoload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/autoload.cpp')
-rw-r--r--src/autoload.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/autoload.cpp b/src/autoload.cpp
index ae63335a..6f7c3905 100644
--- a/src/autoload.cpp
+++ b/src/autoload.cpp
@@ -1,5 +1,4 @@
// The classes responsible for autoloading functions and completions.
-#include "autoload.h"
#include <assert.h>
#include <errno.h>
#include <sys/stat.h>
@@ -9,12 +8,17 @@
#include <string>
#include <utility>
#include <vector>
+#include <pthread.h>
+#include <stddef.h>
+#include <set>
+#include <time.h>
+#include <stdbool.h>
+
+#include "autoload.h"
#include "common.h"
-#include "config.h" // IWYU pragma: keep
#include "env.h"
#include "exec.h"
-#include "signal.h" // IWYU pragma: keep - needed for CHECK_BLOCK
-#include "wutil.h"
+#include "wutil.h" // IWYU pragma: keep
// The time before we'll recheck an autoloaded file.
static const int kAutoloadStalenessInterval = 15;