summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorrofl0r <rofl0r@users.noreply.github.com>2020-10-01 15:25:35 +0100
committerrofl0r <rofl0r@users.noreply.github.com>2020-10-01 15:25:35 +0100
commite20aa221ff143902758cafca668034e29652c9da (patch)
treedf16386863cfb9c0c85cbd52b6fa42dd398a41c1
parent8d27503cc365dccdd65fef7fcb63d36eda717443 (diff)
conf: move inclusion of common.h back to the start
otherwise the feature-test-macros won't kick in as they should. should fix #329
-rw-r--r--src/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.c b/src/conf.c
index b7c4b75..e0d6634 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -23,8 +23,8 @@
* add new directives to. Who knows if I'm right though.
*/
-#include <regex.h>
#include "common.h"
+#include <regex.h>
#include "conf.h"
#include "acl.h"