From 7af593c140523efa04e863f3772f0632c7ffcde3 Mon Sep 17 00:00:00 2001 From: Tobias Stoeckmann Date: Fri, 11 Sep 2020 21:09:40 +0200 Subject: [PATCH] Fixed test1 regression. SIZEOF_SIZE_T might be only defined in config.h. Include config.h for these systems to pass tests which are only supposed to be run on 32 bit systems. Fixes issue #666. --- tests/test1.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test1.c b/tests/test1.c index 7e416105..4d296014 100644 --- a/tests/test1.c +++ b/tests/test1.c @@ -5,6 +5,8 @@ #include #include +#include "config.h" + #include "json.h" #include "parse_flags.h" -- 2.39.5