From 40aab05e77d746beca4119bb254e534e449f9130 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 27 Dec 2019 13:03:20 +0200 Subject: 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 --- src/keymap.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/keymap.c') diff --git a/src/keymap.c b/src/keymap.c index 859c64a..8e6cb67 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -50,6 +50,8 @@ * * ********************************************************/ +#include "config.h" + #include "keymap.h" #include "text.h" -- cgit v1.2.1