From f9cb81fa27ca6ae4fef1c22081040071d20e4413 Mon Sep 17 00:00:00 2001 From: Martin Nowack Date: Mon, 30 Oct 2023 11:59:29 +0000 Subject: Assume C compiler's default standard is `-std=gnu17` Newer compilers use `-std=gnu17` as the default when compiling C code. Fix all the test cases that violate this behaviour or explicitly request older standards `-std=c89` where necessary. --- test/Feature/const_array_opt1.c | 1 + 1 file changed, 1 insertion(+) (limited to 'test/Feature/const_array_opt1.c') diff --git a/test/Feature/const_array_opt1.c b/test/Feature/const_array_opt1.c index 1ed3c3ee..f41bdf47 100644 --- a/test/Feature/const_array_opt1.c +++ b/test/Feature/const_array_opt1.c @@ -9,6 +9,7 @@ this takes under 2 seconds w/ the optimization and almost 6 minutes w/o. So we kill it in 10 sec and check if it has finished successfully. */ +#include "klee/klee.h" #include #include -- cgit 1.4.1