diff options
author | Michael Vetter <jubalh@iodoru.org> | 2021-03-26 19:51:46 +0100 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2021-03-26 19:54:22 +0100 |
commit | 057c9ad7766b15fd0f188989fc190f32abace2dd (patch) | |
tree | 5c0759911a5444888d77d549e324f106a00bf011 /src/tools | |
parent | eaf76555bd4339499f991d9da1158d2957e7fd91 (diff) | |
download | profani-tty-057c9ad7766b15fd0f188989fc190f32abace2dd.tar.gz |
Add config.h in files were it was missing
Related to https://github.com/profanity-im/profanity/issues/1512
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/autocomplete.c | 2 | ||||
-rw-r--r-- | src/tools/http_common.c | 2 | ||||
-rw-r--r-- | src/tools/parser.c | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/autocomplete.c b/src/tools/autocomplete.c index 07689907..9a809984 100644 --- a/src/tools/autocomplete.c +++ b/src/tools/autocomplete.c @@ -33,6 +33,8 @@ * */ +#include "config.h" + #define _GNU_SOURCE #include <stdio.h> #include <stdlib.h> diff --git a/src/tools/http_common.c b/src/tools/http_common.c index e066a6f6..cd24c57e 100644 --- a/src/tools/http_common.c +++ b/src/tools/http_common.c @@ -33,6 +33,8 @@ * */ +#include "config.h" + #define _GNU_SOURCE 1 #include <stdlib.h> diff --git a/src/tools/parser.c b/src/tools/parser.c index c251c13a..98dc5809 100644 --- a/src/tools/parser.c +++ b/src/tools/parser.c @@ -33,6 +33,8 @@ * */ +#include "config.h" + #include <stdlib.h> #include <string.h> |