From: Frédéric Bérat Date: Mon, 12 Dec 2022 07:05:53 +0000 (+0100) Subject: tests: Fix 'type defaults' error in link_cond due to main not being properly declared X-Git-Tag: v1.16i~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a9908da9dbc075ee6c4e853cf3be0365b15f202;p=thirdparty%2Fautomake.git tests: Fix 'type defaults' error in link_cond due to main not being properly declared This is related to an effort to prepare Automake for future GCC/Clang versions which set c99 as default standard to be used. Not properly declaring main as "int main(...)" is rejected since c99. * t/link_cond.sh: Add (void) to main definition. --- diff --git a/t/link_cond.sh b/t/link_cond.sh index 45d0d7f40..889623131 100644 --- a/t/link_cond.sh +++ b/t/link_cond.sh @@ -52,7 +52,7 @@ $AUTOCONF rm -f *.c++ cat > less.c <<'END' /* Valid C but deliberately invalid C++ */ -main () +int main (void) { int new = 0; return new;