Skip to content

Commit

Permalink
Fix another implicit function declaration in configure
Browse files Browse the repository at this point in the history
As mentioned on bug #80171. This one is in libtool.m4, might get
lost on libtool updates.
  • Loading branch information
nikic committed Nov 3, 2020
1 parent 9690ded commit 00ba784
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build/libtool.m4
Original file line number Diff line number Diff line change
Expand Up @@ -978,10 +978,6 @@ else
# endif
#endif
#ifdef __cplusplus
extern "C" void exit (int);
#endif
void fnord() { int i=42;}
int main ()
{
Expand All @@ -997,7 +993,7 @@ int main ()
else
puts (dlerror ());
exit (status);
return (status);
}]
EOF
if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
Expand Down

0 comments on commit 00ba784

Please sign in to comment.