Skip to content

Commit 4e68c53

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix another implicit function declaration in configure
2 parents 0123f75 + 00ba784 commit 4e68c53

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)