Skip to content

Commit 00ba784

Browse files
committed
Fix another implicit function declaration in configure
As mentioned on bug #80171. This one is in libtool.m4, might get lost on libtool updates.
1 parent 9690ded commit 00ba784

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

build/libtool.m4

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -978,10 +978,6 @@ else
978978
# endif
979979
#endif
980980
981-
#ifdef __cplusplus
982-
extern "C" void exit (int);
983-
#endif
984-
985981
void fnord() { int i=42;}
986982
int main ()
987983
{
@@ -997,7 +993,7 @@ int main ()
997993
else
998994
puts (dlerror ());
999995
1000-
exit (status);
996+
return (status);
1001997
}]
1002998
EOF
1003999
if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then

0 commit comments

Comments
 (0)