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 --- test/rulescomp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/rulescomp.c') diff --git a/test/rulescomp.c b/test/rulescomp.c index 67ffcb8..eddf306 100644 --- a/test/rulescomp.c +++ b/test/rulescomp.c @@ -21,6 +21,8 @@ * DEALINGS IN THE SOFTWARE. */ +#include "config.h" + #include "evdev-scancodes.h" #include "test.h" -- cgit v1.2.1