diff options
author | Ran Benita <ran@unusedvar.com> | 2019-12-27 13:03:20 +0200 |
---|---|---|
committer | Ran Benita <ran@unusedvar.com> | 2019-12-27 13:09:11 +0200 |
commit | 40aab05e77d746beca4119bb254e534e449f9130 (patch) | |
tree | a00ca09bbbdd5ae972fd479255b5b45db8ce6c61 /test/utf8.c | |
parent | bdff8ebe3c0be4f55281a3ec7d70be753e2456c0 (diff) | |
download | libxkbcommon-40aab05e77d746beca4119bb254e534e449f9130.tar.gz libxkbcommon-40aab05e77d746beca4119bb254e534e449f9130.tar.bz2 libxkbcommon-40aab05e77d746beca4119bb254e534e449f9130.zip |
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 'test/utf8.c')
-rw-r--r-- | test/utf8.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/utf8.c b/test/utf8.c index 1d1c073..214e356 100644 --- a/test/utf8.c +++ b/test/utf8.c @@ -21,6 +21,8 @@ * DEALINGS IN THE SOFTWARE. */ +#include "config.h" + #include <assert.h> #include <inttypes.h> #include <stdbool.h> |