summaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2019-12-27 13:03:20 +0200
committerRan Benita <ran@unusedvar.com>2019-12-27 13:09:11 +0200
commit40aab05e77d746beca4119bb254e534e449f9130 (patch)
treea00ca09bbbdd5ae972fd479255b5b45db8ce6c61 /fuzz
parentbdff8ebe3c0be4f55281a3ec7d70be753e2456c0 (diff)
downloadxorg-lib-libxkbcommon-40aab05e77d746beca4119bb254e534e449f9130.tar.gz
build: include config.h manually
Previously we included it with an `-include` compiler directive. But that's not portable. And it's better to be explicit anyway. Every .c file should have `include "config.h"` first thing. Signed-off-by: Ran Benita <ran@unusedvar.com>
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/compose/target.c1
-rw-r--r--fuzz/keymap/target.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/fuzz/compose/target.c b/fuzz/compose/target.c
index 69b434e..a7f15c1 100644
--- a/fuzz/compose/target.c
+++ b/fuzz/compose/target.c
@@ -3,6 +3,7 @@
*
* Currently, just parses an input file, and hopefully doesn't crash or hang.
*/
+#include "config.h"
#include <assert.h>
diff --git a/fuzz/keymap/target.c b/fuzz/keymap/target.c
index 3c5e5f7..e8c6fb5 100644
--- a/fuzz/keymap/target.c
+++ b/fuzz/keymap/target.c
@@ -3,6 +3,7 @@
*
* Currently, just parses an input file, and hopefully doesn't crash or hang.
*/
+#include "config.h"
#include <assert.h>