From: Tobias Stoeckmann Date: Fri, 11 Sep 2020 19:09:40 +0000 (+0200) Subject: Fixed test1 regression. X-Git-Tag: json-c-0.16-20220414~37^2~15^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F667%2Fhead;p=thirdparty%2Fjson-c.git 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. --- 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"