From db6e9bac370093b13cfb6f0b81ac066fed64b004 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Wed, 16 Nov 2022 19:17:08 +0000 Subject: Messing around replacing loops with recursion leveraging __attribute__((musttail)) in order to avoid stack overflow --- test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test b/test index 4e32886..77c4f7d 100755 --- a/test +++ b/test @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -e -cc -Dtest=true -o test_exe CuTest.c $@ +clang -Wall -Werror -Dtest=true -o test_exe CuTest.c $@ ./test_exe result=$? rm test_exe -- cgit v1.2.3-ZIG