summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDennis Camera <skonfig@dtnr.ch>2022-08-17 23:53:20 +0200
committerDennis Camera <skonfig@dtnr.ch>2022-08-17 23:53:20 +0200
commit3c0da35d1eeacb150c91e156892d17e1204b19d0 (patch)
treedc17e159f02acc53709b276c5b53d0d2ae55b773 /src
parent9e76d82d928ef41555ddd810b3e31cf7136386a1 (diff)
downloadskonfig-c-3c0da35d1eeacb150c91e156892d17e1204b19d0.tar.gz
skonfig-c-3c0da35d1eeacb150c91e156892d17e1204b19d0.zip
Compiler includes config.h in all modules
Diffstat (limited to 'src')
-rw-r--r--src/config.h2
-rw-r--r--src/run.h2
-rw-r--r--src/skonfig.c2
-rw-r--r--src/util/fs.h2
-rw-r--r--src/util/string.h2
5 files changed, 0 insertions, 10 deletions
diff --git a/src/config.h b/src/config.h
index 6594618..f6dbcf5 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,8 +1,6 @@
#ifndef _SK_CONFIG_H
#define _SK_CONFIG_H
-#include "../config.h"
-
#include "log.h"
#include <stdio.h>
diff --git a/src/run.h b/src/run.h
index 1fd46b6..2dded89 100644
--- a/src/run.h
+++ b/src/run.h
@@ -1,8 +1,6 @@
#ifndef _SK_RUN_H
#define _SK_RUN_H
-#include "../config.h"
-
#include "config.h"
#if HAVE_STDBOOL_H
diff --git a/src/skonfig.c b/src/skonfig.c
index a3cc6cf..4b1002e 100644
--- a/src/skonfig.c
+++ b/src/skonfig.c
@@ -1,5 +1,3 @@
-#include "../config.h"
-
#include "config.h"
#include "log.h"
#include "run.h"
diff --git a/src/util/fs.h b/src/util/fs.h
index 9dc445f..9701bc8 100644
--- a/src/util/fs.h
+++ b/src/util/fs.h
@@ -1,8 +1,6 @@
#ifndef _SK_UTIL_FS_H
#define _SK_UTIL_FS_H
-#include "../../config.h"
-
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
diff --git a/src/util/string.h b/src/util/string.h
index 39c9268..c244a29 100644
--- a/src/util/string.h
+++ b/src/util/string.h
@@ -1,8 +1,6 @@
#ifndef _SK_UTIL_STRING_H
#define _SK_UTIL_STRING_H
-#include "../../config.h"
-
#include "array.h"
#include <stddef.h>