Commit db301087d65404a3ccefde8e12f45c5adaff7d99

Patrick Steinhardt 2019-10-24T12:17:02

config_file: remove unused includes

diff --git a/src/config_file.c b/src/config_file.c
index f4d881f..60e2190 100644
--- a/src/config_file.c
+++ b/src/config_file.c
@@ -9,23 +9,17 @@
 
 #include "git2/config.h"
 #include "git2/sys/config.h"
-#include "git2/types.h"
 
 #include "array.h"
-#include "buf_text.h"
 #include "buffer.h"
 #include "config_backend.h"
 #include "config_entries.h"
 #include "config_parse.h"
 #include "filebuf.h"
 #include "regexp.h"
-#include "strmap.h"
 #include "sysdir.h"
 #include "wildmatch.h"
 
-#include <ctype.h>
-#include <sys/types.h>
-
 /* Max depth for [include] directives */
 #define MAX_INCLUDE_DEPTH 10