This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Added test names to some tests in t/test_pl/_num_to_alpha.t
[perl5.git] / Configure
index 7fa1804..a1bc835 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -15068,9 +15068,9 @@ $cat >isblank.c <<'EOCP'
 int main() {
        int c = ' ';
        if (isblank(c))
-               exit(0);
+               return 0 ;
        else
-               exit(1);
+               return 1 ;
 }
 EOCP
 if $cc $ccflags $ldflags -o isblank isblank.c $libs >/dev/null 2>&1 ; then