This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Sync with minor changes in blead
authorH.Merijn Brand - Tux <h.m.brand@xs4all.nl>
Tue, 21 Jan 2020 16:28:45 +0000 (17:28 +0100)
committerH.Merijn Brand - Tux <h.m.brand@xs4all.nl>
Tue, 21 Jan 2020 16:28:45 +0000 (17:28 +0100)
U/modified/d_strtoul.U
U/modified/sh.U
U/perl/d_strtoull.U

index 01c7735..15e8bf6 100644 (file)
@@ -38,9 +38,9 @@ case "$d_strtoul" in
 Checking whether your strtoul() works okay...
 EOM
        $cat >try.c <<'EOCP'
+#include <stdlib.h>
 #include <errno.h>
 #include <stdio.h>
-#include <stdlib.h>
 static int bad = 0;
 void check(const char *s, unsigned long eul, int een) {
        unsigned long gul;
index a1fa72e..d7b008e 100644 (file)
@@ -88,8 +88,8 @@ case "$sh" in
 $me:  Fatal Error:  I can't find a Bourne Shell anywhere.
 
 Usually it's in /bin/sh.  How did you even get this far?
-Please contact me (<$maintname>) at <$maintloc> and
-we'll try to straighten this all out.
+Please contact me (<$maintname>) at <$maintloc>
+and we'll try to straighten this all out.
 EOM
        exit 1
        ;;
index 4fbaf46..c837cf1 100644 (file)
@@ -28,11 +28,11 @@ case "$d_longlong-$d_strtoull" in
 Checking whether your strtoull() works okay...
 EOM
        $cat >try.c <<'EOCP'
+#include <stdlib.h>
 #include <errno.h>
 #ifdef __hpux
 #define strtoull __strtoull
 #endif
-#include <stdlib.h>
 #include <stdio.h>
 static int bad = 0;
 void check(const char *s, long long eull, int een) {