diff options
author | rofl0r <rofl0r@users.noreply.github.com> | 2020-10-01 15:25:35 +0100 |
---|---|---|
committer | rofl0r <rofl0r@users.noreply.github.com> | 2020-10-01 15:25:35 +0100 |
commit | e20aa221ff143902758cafca668034e29652c9da (patch) | |
tree | df16386863cfb9c0c85cbd52b6fa42dd398a41c1 /src | |
parent | 8d27503cc365dccdd65fef7fcb63d36eda717443 (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
Diffstat (limited to 'src')
-rw-r--r-- | src/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |