This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Consistent use of HP-UX
authorH.Merijn Brand <merijn@nb09.procura.nl>
Mon, 19 Oct 2009 14:22:43 +0000 (16:22 +0200)
committerH.Merijn Brand <merijn@nb09.procura.nl>
Mon, 19 Oct 2009 14:22:43 +0000 (16:22 +0200)
U/compline/d_casti32.U
U/compline/d_castneg.U

index 503395e..13847fa 100644 (file)
@@ -64,7 +64,7 @@ int main()
        signal(SIGFPE, blech);
 
        /* Don't let compiler optimize the test away.  Store the number
-          in a writable string for gcc to pass to sscanf under HP/UX.
+          in a writable string for gcc to pass to sscanf under HP-UX.
        */
        sprintf(str, "2147483647");
        sscanf(str, "%lf", &f); /* f = (double) 0x7fffffff; */
index 5ec1141..f3162e9 100644 (file)
@@ -84,7 +84,7 @@ int main()
           optimized the whole file away
        */
        /* Store the number in a writable string for gcc to pass to
-          sscanf under HP/UX.
+          sscanf under HP-UX.
        */
        sprintf(str, "-123");
        sscanf(str, "%lf", &f);  /* f = -123.; */