Two doublewords less
[p5sagit/p5-mst-13.2.git] / util.c
diff --git a/util.c b/util.c
index 26040eb..fbed244 100644 (file)
--- a/util.c
+++ b/util.c
@@ -1,6 +1,6 @@
 /*    util.c
  *
- *    Copyright (c) 1991-1994, Larry Wall
+ *    Copyright (c) 1991-1997, Larry Wall
  *
  *    You may distribute under the terms of either the GNU General Public
  *    License or the Artistic License, as specified in the README file.
 #include <signal.h>
 #endif
 
+#ifndef SIG_ERR
+# define SIG_ERR ((Sighandler_t) -1)
+#endif
+
 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
 #ifdef I_UNISTD
 #  include <unistd.h>
 #  include <sys/file.h>
 #endif
 
+#ifdef I_SYS_WAIT
+#  include <sys/wait.h>
+#endif
+
 #define FLUSH
 
 #ifdef LEAKTEST
 static void xstat _((void));
 #endif
 
-#ifndef safemalloc
+#ifndef MYMALLOC
 
 /* paranoid version of malloc */
 
@@ -60,19 +68,15 @@ static void xstat _((void));
 
 Malloc_t
 safemalloc(size)
-#ifdef MSDOS
-unsigned long size;
-#else
 MEM_SIZE size;
-#endif /* MSDOS */
 {
     Malloc_t ptr;
-#ifdef MSDOS
+#ifdef HAS_64K_LIMIT
        if (size > 0xffff) {
                PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
                my_exit(1);
        }
-#endif /* MSDOS */
+#endif /* HAS_64K_LIMIT */
 #ifdef DEBUGGING
     if ((long)size < 0)
        croak("panic: malloc");
@@ -99,23 +103,20 @@ MEM_SIZE size;
 Malloc_t
 saferealloc(where,size)
 Malloc_t where;
-#ifndef MSDOS
 MEM_SIZE size;
-#else
-unsigned long size;
-#endif /* MSDOS */
 {
     Malloc_t ptr;
 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
     Malloc_t realloc();
 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
 
-#ifdef MSDOS
-       if (size > 0xffff) {
-               PerlIO_printf(PerlIO_stderr(), "Reallocation too large: %lx\n", size) FLUSH;
-               my_exit(1);
-       }
-#endif /* MSDOS */
+#ifdef HAS_64K_LIMIT 
+    if (size > 0xffff) {
+       PerlIO_printf(PerlIO_stderr(),
+                     "Reallocation too large: %lx\n", size) FLUSH;
+       my_exit(1);
+    }
+#endif /* HAS_64K_LIMIT */
     if (!where)
        croak("Null realloc");
 #ifdef DEBUGGING
@@ -149,7 +150,7 @@ unsigned long size;
 
 /* safe version of free */
 
-void
+Free_t
 safefree(where)
 Malloc_t where;
 {
@@ -173,23 +174,24 @@ MEM_SIZE size;
 {
     Malloc_t ptr;
 
-#ifdef MSDOS
-       if (size * count > 0xffff) {
-               PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size * count) FLUSH;
-               my_exit(1);
-       }
-#endif /* MSDOS */
+#ifdef HAS_64K_LIMIT
+    if (size * count > 0xffff) {
+       PerlIO_printf(PerlIO_stderr(),
+                     "Allocation too large: %lx\n", size * count) FLUSH;
+       my_exit(1);
+    }
+#endif /* HAS_64K_LIMIT */
 #ifdef DEBUGGING
     if ((long)size < 0 || (long)count < 0)
        croak("panic: calloc");
 #endif
+    size *= count;
+    ptr = malloc(size?size:1); /* malloc(0) is NASTY on our system */
 #if !(defined(I286) || defined(atarist))
     DEBUG_m(PerlIO_printf(PerlIO_stderr(), "0x%x: (%05d) calloc %ld  x %ld bytes\n",ptr,an++,(long)count,(long)size));
 #else
     DEBUG_m(PerlIO_printf(PerlIO_stderr(), "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,an++,(long)count,(long)size));
 #endif
-    size *= count;
-    ptr = malloc(size?size:1); /* malloc(0) is NASTY on our system */
     if (ptr != Nullch) {
        memset((void*)ptr, 0, size);
        return ptr;
@@ -203,7 +205,7 @@ MEM_SIZE size;
     /*NOTREACHED*/
 }
 
-#endif /* !safemalloc */
+#endif /* !MYMALLOC */
 
 #ifdef LEAKTEST
 
@@ -404,7 +406,135 @@ char *lend;
     return Nullch;
 }
 
-/* Initialize locale (and the fold[] array).*/
+/*
+ * Set up for a new ctype locale.
+ */
+void
+perl_new_ctype(newctype)
+    char *newctype;
+{
+#ifdef USE_LOCALE_CTYPE
+
+    int i;
+
+    for (i = 0; i < 256; i++) {
+       if (isUPPER_LC(i))
+           fold_locale[i] = toLOWER_LC(i);
+       else if (isLOWER_LC(i))
+           fold_locale[i] = toUPPER_LC(i);
+       else
+           fold_locale[i] = i;
+    }
+
+#endif /* USE_LOCALE_CTYPE */
+}
+
+/*
+ * Set up for a new collation locale.
+ */
+void
+perl_new_collate(newcoll)
+    char *newcoll;
+{
+#ifdef USE_LOCALE_COLLATE
+
+    if (! newcoll) {
+       if (collation_name) {
+           ++collation_ix;
+           Safefree(collation_name);
+           collation_name = NULL;
+           collation_standard = TRUE;
+           collxfrm_base = 0;
+           collxfrm_mult = 2;
+       }
+       return;
+    }
+
+    if (! collation_name || strNE(collation_name, newcoll)) {
+       ++collation_ix;
+       Safefree(collation_name);
+       collation_name = savepv(newcoll);
+       collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
+
+       {
+         /*  2: at most so many chars ('a', 'b'). */
+         /* 50: surely no system expands a char more. */
+#define XFRMBUFSIZE  (2 * 50)
+         char xbuf[XFRMBUFSIZE];
+         Size_t fa = strxfrm(xbuf, "a",  XFRMBUFSIZE);
+         Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
+         SSize_t mult = fb - fa;
+         if (mult < 1)
+             croak("strxfrm() gets absurd");
+         collxfrm_base = (fa > mult) ? (fa - mult) : 0;
+         collxfrm_mult = mult;
+       }
+    }
+
+#endif /* USE_LOCALE_COLLATE */
+}
+
+/*
+ * Set up for a new numeric locale.
+ */
+void
+perl_new_numeric(newnum)
+    char *newnum;
+{
+#ifdef USE_LOCALE_NUMERIC
+
+    if (! newnum) {
+       if (numeric_name) {
+           Safefree(numeric_name);
+           numeric_name = NULL;
+           numeric_standard = TRUE;
+           numeric_local = TRUE;
+       }
+       return;
+    }
+
+    if (! numeric_name || strNE(numeric_name, newnum)) {
+       Safefree(numeric_name);
+       numeric_name = savepv(newnum);
+       numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
+       numeric_local = TRUE;
+    }
+
+#endif /* USE_LOCALE_NUMERIC */
+}
+
+void
+perl_set_numeric_standard()
+{
+#ifdef USE_LOCALE_NUMERIC
+
+    if (! numeric_standard) {
+       setlocale(LC_NUMERIC, "C");
+       numeric_standard = TRUE;
+       numeric_local = FALSE;
+    }
+
+#endif /* USE_LOCALE_NUMERIC */
+}
+
+void
+perl_set_numeric_local()
+{
+#ifdef USE_LOCALE_NUMERIC
+
+    if (! numeric_local) {
+       setlocale(LC_NUMERIC, numeric_name);
+       numeric_standard = FALSE;
+       numeric_local = TRUE;
+    }
+
+#endif /* USE_LOCALE_NUMERIC */
+}
+
+
+/*
+ * Initialize locale awareness.
+ */
 int
 perl_init_i18nl10n(printwarn)  
     int printwarn;
@@ -415,44 +545,298 @@ perl_init_i18nl10n(printwarn)
      *    0 = fallback to C locale,
      *   -1 = fallback to C locale failed
      */
-#if defined(HAS_SETLOCALE) && defined(LC_CTYPE)
-    char * lang     = getenv("LANG");
-    char * lc_all   = getenv("LC_ALL");
-    char * lc_ctype = getenv("LC_CTYPE");
-    int i;
 
-    if (setlocale(LC_CTYPE, "") == NULL && (lc_all || lc_ctype || lang)) {
-       char *doit;
+#ifdef USE_LOCALE
+
+#ifdef USE_LOCALE_CTYPE
+    char *curctype   = NULL;
+#endif /* USE_LOCALE_CTYPE */
+#ifdef USE_LOCALE_COLLATE
+    char *curcoll    = NULL;
+#endif /* USE_LOCALE_COLLATE */
+#ifdef USE_LOCALE_NUMERIC
+    char *curnum     = NULL;
+#endif /* USE_LOCALE_NUMERIC */
+    char *lc_all     = getenv("LC_ALL");
+    char *lang       = getenv("LANG");
+    bool setlocale_failure = FALSE;
+
+#ifdef LOCALE_ENVIRON_REQUIRED
+
+    /*
+     * Ultrix setlocale(..., "") fails if there are no environment
+     * variables from which to get a locale name.
+     */
+
+    bool done = FALSE;
+
+#ifdef LC_ALL
+    if (lang) {
+       if (setlocale(LC_ALL, ""))
+           done = TRUE;
+       else
+           setlocale_failure = TRUE;
+    }
+    if (!setlocale_failure)
+#endif /* LC_ALL */
+    {
+#ifdef USE_LOCALE_CTYPE
+       if (! (curctype = setlocale(LC_CTYPE,
+                                   (!done && (lang || getenv("LC_CTYPE")))
+                                   ? "" : Nullch)))
+           setlocale_failure = TRUE;
+#endif /* USE_LOCALE_CTYPE */
+#ifdef USE_LOCALE_COLLATE
+       if (! (curcoll = setlocale(LC_COLLATE,
+                                  (!done && (lang || getenv("LC_COLLATE")))
+                                  ? "" : Nullch)))
+           setlocale_failure = TRUE;
+#endif /* USE_LOCALE_COLLATE */
+#ifdef USE_LOCALE_NUMERIC
+       if (! (curnum = setlocale(LC_NUMERIC,
+                                 (!done && (lang || getenv("LC_NUMERIC")))
+                                 ? "" : Nullch)))
+           setlocale_failure = TRUE;
+#endif /* USE_LOCALE_NUMERIC */
+    }
+
+#else /* !LOCALE_ENVIRON_REQUIRED */
+
+#ifdef LC_ALL
+
+    if (! setlocale(LC_ALL, ""))
+       setlocale_failure = TRUE;
+    else {
+#ifdef USE_LOCALE_CTYPE
+       curctype = setlocale(LC_CTYPE, Nullch);
+#endif /* USE_LOCALE_CTYPE */
+#ifdef USE_LOCALE_COLLATE
+       curcoll = setlocale(LC_COLLATE, Nullch);
+#endif /* USE_LOCALE_COLLATE */
+#ifdef USE_LOCALE_NUMERIC
+       curnum = setlocale(LC_NUMERIC, Nullch);
+#endif /* USE_LOCALE_NUMERIC */
+    }
+
+#else /* !LC_ALL */
+
+#ifdef USE_LOCALE_CTYPE
+    if (! (curctype = setlocale(LC_CTYPE, "")))
+       setlocale_failure = TRUE;
+#endif /* USE_LOCALE_CTYPE */
+#ifdef USE_LOCALE_COLLATE
+    if (! (curcoll = setlocale(LC_COLLATE, "")))
+       setlocale_failure = TRUE;
+#endif /* USE_LOCALE_COLLATE */
+#ifdef USE_LOCALE_NUMERIC
+    if (! (curnum = setlocale(LC_NUMERIC, "")))
+       setlocale_failure = TRUE;
+#endif /* USE_LOCALE_NUMERIC */
+
+#endif /* LC_ALL */
+
+#endif /* !LOCALE_ENVIRON_REQUIRED */
+
+    if (setlocale_failure) {
+       char *p;
+       bool locwarn = (printwarn > 1 || 
+                       printwarn &&
+                       (!(p = getenv("PERL_BADLANG")) || atoi(p)));
+
+       if (locwarn) {
+#ifdef LC_ALL
+  
+           PerlIO_printf(PerlIO_stderr(),
+              "perl: warning: Setting locale failed.\n");
+
+#else /* !LC_ALL */
+  
+           PerlIO_printf(PerlIO_stderr(),
+              "perl: warning: Setting locale failed for the categories:\n\t");
+#ifdef USE_LOCALE_CTYPE
+           if (! curctype)
+               PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
+#endif /* USE_LOCALE_CTYPE */
+#ifdef USE_LOCALE_COLLATE
+           if (! curcoll)
+               PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
+#endif /* USE_LOCALE_COLLATE */
+#ifdef USE_LOCALE_NUMERIC
+           if (! curnum)
+               PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
+#endif /* USE_LOCALE_NUMERIC */
+           PerlIO_printf(PerlIO_stderr(), "\n");
+
+#endif /* LC_ALL */
+
+           PerlIO_printf(PerlIO_stderr(),
+               "perl: warning: Please check that your locale settings:\n");
+
+           PerlIO_printf(PerlIO_stderr(),
+                         "\tLC_ALL = %c%s%c,\n",
+                         lc_all ? '"' : '(',
+                         lc_all ? lc_all : "unset",
+                         lc_all ? '"' : ')');
+
+           {
+             char **e;
+             for (e = environ; *e; e++) {
+                 if (strnEQ(*e, "LC_", 3)
+                       && strnNE(*e, "LC_ALL=", 7)
+                       && (p = strchr(*e, '=')))
+                     PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
+                                   (p - *e), *e, p + 1);
+             }
+           }
+
+           PerlIO_printf(PerlIO_stderr(),
+                         "\tLANG = %c%s%c\n",
+                         lang ? '"' : '(',
+                         lang ? lang : "unset",
+                         lang ? '"' : ')');
 
-       if (printwarn > 1 || 
-             printwarn && (!(doit = getenv("PERL_BADLANG")) || atoi(doit))) {
-           PerlIO_printf(PerlIO_stderr(), "warning: setlocale(LC_CTYPE, \"\") failed.\n");
            PerlIO_printf(PerlIO_stderr(),
-             "warning: LC_ALL = \"%s\", LC_CTYPE = \"%s\", LANG = \"%s\",\n",
-             lc_all   ? lc_all   : "(null)",
-             lc_ctype ? lc_ctype : "(null)",
-             lang     ? lang     : "(null)"
-             );
-           PerlIO_printf(PerlIO_stderr(), "warning: falling back to the \"C\" locale.\n");
+                         "    are supported and installed on your system.\n");
        }
-       ok = 0;
-       if (setlocale(LC_CTYPE, "C") == NULL)
+
+#ifdef LC_ALL
+
+       if (setlocale(LC_ALL, "C")) {
+           if (locwarn)
+               PerlIO_printf(PerlIO_stderr(),
+      "perl: warning: Falling back to the standard locale (\"C\").\n");
+           ok = 0;
+       }
+       else {
+           if (locwarn)
+               PerlIO_printf(PerlIO_stderr(),
+      "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
            ok = -1;
-    }
+       }
 
-    for (i = 0; i < 256; i++) {
-       if (isUPPER(i)) fold[i] = toLOWER(i);
-       else if (isLOWER(i)) fold[i] = toUPPER(i);
-       else fold[i] = i;
+#else /* ! LC_ALL */
+
+       if (0
+#ifdef USE_LOCALE_CTYPE
+           || !(curctype || setlocale(LC_CTYPE, "C"))
+#endif /* USE_LOCALE_CTYPE */
+#ifdef USE_LOCALE_COLLATE
+           || !(curcoll || setlocale(LC_COLLATE, "C"))
+#endif /* USE_LOCALE_COLLATE */
+#ifdef USE_LOCALE_NUMERIC
+           || !(curnum || setlocale(LC_NUMERIC, "C"))
+#endif /* USE_LOCALE_NUMERIC */
+           )
+       {
+           if (locwarn)
+               PerlIO_printf(PerlIO_stderr(),
+      "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
+           ok = -1;
+       }
+
+#endif /* ! LC_ALL */
+
+#ifdef USE_LOCALE_CTYPE
+       curctype = setlocale(LC_CTYPE, Nullch);
+#endif /* USE_LOCALE_CTYPE */
+#ifdef USE_LOCALE_COLLATE
+       curcoll = setlocale(LC_COLLATE, Nullch);
+#endif /* USE_LOCALE_COLLATE */
+#ifdef USE_LOCALE_NUMERIC
+       curnum = setlocale(LC_NUMERIC, Nullch);
+#endif /* USE_LOCALE_NUMERIC */
     }
-#endif
+
+#ifdef USE_LOCALE_CTYPE
+    perl_new_ctype(curctype);
+#endif /* USE_LOCALE_CTYPE */
+
+#ifdef USE_LOCALE_COLLATE
+    perl_new_collate(curcoll);
+#endif /* USE_LOCALE_COLLATE */
+
+#ifdef USE_LOCALE_NUMERIC
+    perl_new_numeric(curnum);
+#endif /* USE_LOCALE_NUMERIC */
+
+#endif /* USE_LOCALE */
+
     return ok;
 }
 
+/* Backwards compatibility. */
+int
+perl_init_i18nl14n(printwarn)  
+    int printwarn;
+{
+    return perl_init_i18nl10n(printwarn);
+}
+
+#ifdef USE_LOCALE_COLLATE
+
+/*
+ * mem_collxfrm() is a bit like strxfrm() but with two important
+ * differences. First, it handles embedded NULs. Second, it allocates
+ * a bit more memory than needed for the transformed data itself.
+ * The real transformed data begins at offset sizeof(collationix).
+ * Please see sv_collxfrm() to see how this is used.
+ */
+char *
+mem_collxfrm(s, len, xlen)
+     const char *s;
+     STRLEN len;
+     STRLEN *xlen;
+{
+    char *xbuf;
+    STRLEN xalloc, xin, xout;
+
+    /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
+    /* the +1 is for the terminating NUL. */
+
+    xalloc = sizeof(collation_ix) + collxfrm_base + (collxfrm_mult * len) + 1;
+    New(171, xbuf, xalloc, char);
+    if (! xbuf)
+       goto bad;
+
+    *(U32*)xbuf = collation_ix;
+    xout = sizeof(collation_ix);
+    for (xin = 0; xin < len; ) {
+       SSize_t xused;
+
+       for (;;) {
+           xused = strxfrm(xbuf + xout, s + xin, xalloc - xout);
+           if (xused == -1)
+               goto bad;
+           if (xused < xalloc - xout)
+               break;
+           xalloc = (2 * xalloc) + 1;
+           Renew(xbuf, xalloc, char);
+           if (! xbuf)
+               goto bad;
+       }
+
+       xin += strlen(s + xin) + 1;
+       xout += xused;
+
+       /* Embedded NULs are understood but silently skipped
+        * because they make no sense in locale collation. */
+    }
+
+    xbuf[xout] = '\0';
+    *xlen = xout - sizeof(collation_ix);
+    return xbuf;
+
+  bad:
+    Safefree(xbuf);
+    *xlen = 0;
+    return NULL;
+}
+
+#endif /* USE_LOCALE_COLLATE */
+
 void
-fbm_compile(sv, iflag)
+fbm_compile(sv)
 SV *sv;
-I32 iflag;
 {
     register unsigned char *s;
     register unsigned char *table;
@@ -472,47 +856,19 @@ I32 iflag;
     i = 0;
     while (s >= (unsigned char*)(SvPVX(sv)))
     {
-       if (table[*s] == len) {
-#ifndef pdp11
-           if (iflag)
-               table[*s] = table[fold[*s]] = i;
-#else
-           if (iflag) {
-               I32 j;
-               j = fold[*s];
-               table[j] = i;
-               table[*s] = i;
-           }
-#endif /* pdp11 */
-           else
-               table[*s] = i;
-       }
+       if (table[*s] == len)
+           table[*s] = i;
        s--,i++;
     }
     sv_upgrade(sv, SVt_PVBM);
-    sv_magic(sv, Nullsv, 'B', Nullch, 0);                      /* deep magic */
+    sv_magic(sv, Nullsv, 'B', Nullch, 0);      /* deep magic */
     SvVALID_on(sv);
 
     s = (unsigned char*)(SvPVX(sv));           /* deeper magic */
-    if (iflag) {
-       register U32 tmp, foldtmp;
-       SvCASEFOLD_on(sv);
-       for (i = 0; i < len; i++) {
-           tmp=freq[s[i]];
-           foldtmp=freq[fold[s[i]]];
-           if (tmp < frequency && foldtmp < frequency) {
-               rarest = i;
-               /* choose most frequent among the two */
-               frequency = (tmp > foldtmp) ? tmp : foldtmp;
-           }
-       }
-    }
-    else {
-       for (i = 0; i < len; i++) {
-           if (freq[s[i]] < frequency) {
-               rarest = i;
-               frequency = freq[s[i]];
-           }
+    for (i = 0; i < len; i++) {
+       if (freq[s[i]] < frequency) {
+           rarest = i;
+           frequency = freq[s[i]];
        }
     }
     BmRARE(sv) = s[rarest];
@@ -547,91 +903,50 @@ SV *littlestr;
        if (littlelen > bigend - big)
            return Nullch;
        little = (unsigned char*)SvPVX(littlestr);
-       if (SvCASEFOLD(littlestr)) {    /* oops, fake it */
-           big = bigend - littlelen;           /* just start near end */
-           if (bigend[-1] == '\n' && little[littlelen-1] != '\n')
-               big--;
-       }
-       else {
-           s = bigend - littlelen;
-           if (*s == *little && memcmp((char*)s,(char*)little,littlelen)==0)
-               return (char*)s;                /* how sweet it is */
-           else if (bigend[-1] == '\n' && little[littlelen-1] != '\n'
-             && s > big) {
-                   s--;
-               if (*s == *little && memcmp((char*)s,(char*)little,littlelen)==0)
-                   return (char*)s;
-           }
-           return Nullch;
+       s = bigend - littlelen;
+       if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
+           return (char*)s;            /* how sweet it is */
+       else if (bigend[-1] == '\n' && little[littlelen-1] != '\n'
+                && s > big) {
+           s--;
+           if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
+               return (char*)s;
        }
+       return Nullch;
     }
     table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
     if (--littlelen >= bigend - big)
        return Nullch;
     s = big + littlelen;
     oldlittle = little = table - 2;
-    if (SvCASEFOLD(littlestr)) {       /* case insensitive? */
-       if (s < bigend) {
-         top1:
-           /*SUPPRESS 560*/
-           if (tmp = table[*s]) {
+    if (s < bigend) {
+      top2:
+       /*SUPPRESS 560*/
+       if (tmp = table[*s]) {
 #ifdef POINTERRIGOR
-               if (bigend - s > tmp) {
-                   s += tmp;
-                   goto top1;
-               }
+           if (bigend - s > tmp) {
+               s += tmp;
+               goto top2;
+           }
 #else
-               if ((s += tmp) < bigend)
-                   goto top1;
+           if ((s += tmp) < bigend)
+               goto top2;
 #endif
-               return Nullch;
-           }
-           else {
-               tmp = littlelen;        /* less expensive than calling strncmp() */
-               olds = s;
-               while (tmp--) {
-                   if (*--s == *--little || fold[*s] == *little)
-                       continue;
-                   s = olds + 1;       /* here we pay the price for failure */
-                   little = oldlittle;
-                   if (s < bigend)     /* fake up continue to outer loop */
-                       goto top1;
-                   return Nullch;
-               }
-               return (char *)s;
-           }
+           return Nullch;
        }
-    }
-    else {
-       if (s < bigend) {
-         top2:
-           /*SUPPRESS 560*/
-           if (tmp = table[*s]) {
-#ifdef POINTERRIGOR
-               if (bigend - s > tmp) {
-                   s += tmp;
-                   goto top2;
-               }
-#else
-               if ((s += tmp) < bigend)
+       else {
+           tmp = littlelen;    /* less expensive than calling strncmp() */
+           olds = s;
+           while (tmp--) {
+               if (*--s == *--little)
+                   continue;
+               s = olds + 1;   /* here we pay the price for failure */
+               little = oldlittle;
+               if (s < bigend) /* fake up continue to outer loop */
                    goto top2;
-#endif
                return Nullch;
            }
-           else {
-               tmp = littlelen;        /* less expensive than calling strncmp() */
-               olds = s;
-               while (tmp--) {
-                   if (*--s == *--little)
-                       continue;
-                   s = olds + 1;       /* here we pay the price for failure */
-                   little = oldlittle;
-                   if (s < bigend)     /* fake up continue to outer loop */
-                       goto top2;
-                   return Nullch;
-               }
-               return (char *)s;
-           }
+           return (char *)s;
        }
     }
     return Nullch;
@@ -664,96 +979,66 @@ SV *littlestr;
            return Nullch;
     }
 #ifdef POINTERRIGOR
-    if (SvCASEFOLD(littlestr)) {       /* case insignificant? */
-       do {
-           if (big[pos-previous] != first && big[pos-previous] != fold[first])
-               continue;
-           for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
-               if (x >= bigend)
-                   return Nullch;
-               if (*s++ != *x++ && fold[*(s-1)] != *(x-1)) {
-                   s--;
-                   break;
-               }
-           }
-           if (s == littleend)
-               return (char *)(big+pos-previous);
-       } while (
-               pos += screamnext[pos]  /* does this goof up anywhere? */
-           );
-    }
-    else {
-       do {
-           if (big[pos-previous] != first)
-               continue;
-           for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
-               if (x >= bigend)
-                   return Nullch;
-               if (*s++ != *x++) {
-                   s--;
-                   break;
-               }
+    do {
+       if (big[pos-previous] != first)
+           continue;
+       for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
+           if (x >= bigend)
+               return Nullch;
+           if (*s++ != *x++) {
+               s--;
+               break;
            }
-           if (s == littleend)
-               return (char *)(big+pos-previous);
-       } while ( pos += screamnext[pos] );
-    }
+       }
+       if (s == littleend)
+           return (char *)(big+pos-previous);
+    } while ( pos += screamnext[pos] );
 #else /* !POINTERRIGOR */
     big -= previous;
-    if (SvCASEFOLD(littlestr)) {       /* case insignificant? */
-       do {
-           if (big[pos] != first && big[pos] != fold[first])
-               continue;
-           for (x=big+pos+1,s=little; s < littleend; /**/ ) {
-               if (x >= bigend)
-                   return Nullch;
-               if (*s++ != *x++ && fold[*(s-1)] != *(x-1)) {
-                   s--;
-                   break;
-               }
-           }
-           if (s == littleend)
-               return (char *)(big+pos);
-       } while (
-               pos += screamnext[pos]  /* does this goof up anywhere? */
-           );
-    }
-    else {
-       do {
-           if (big[pos] != first)
-               continue;
-           for (x=big+pos+1,s=little; s < littleend; /**/ ) {
-               if (x >= bigend)
-                   return Nullch;
-               if (*s++ != *x++) {
-                   s--;
-                   break;
-               }
+    do {
+       if (big[pos] != first)
+           continue;
+       for (x=big+pos+1,s=little; s < littleend; /**/ ) {
+           if (x >= bigend)
+               return Nullch;
+           if (*s++ != *x++) {
+               s--;
+               break;
            }
-           if (s == littleend)
-               return (char *)(big+pos);
-       } while (
-               pos += screamnext[pos]
-           );
-    }
+       }
+       if (s == littleend)
+           return (char *)(big+pos);
+    } while ( pos += screamnext[pos] );
 #endif /* POINTERRIGOR */
     return Nullch;
 }
 
 I32
-ibcmp(a,b,len)
-register U8 *a;
-register U8 *b;
+ibcmp(s1, s2, len)
+char *s1, *s2;
 register I32 len;
 {
+    register U8 *a = (U8 *)s1;
+    register U8 *b = (U8 *)s2;
     while (len--) {
-       if (*a == *b) {
-           a++,b++;
-           continue;
-       }
-       if (fold[*a++] == *b++)
-           continue;
-       return 1;
+       if (*a != *b && *a != fold[*b])
+           return 1;
+       a++,b++;
+    }
+    return 0;
+}
+
+I32
+ibcmp_locale(s1, s2, len)
+char *s1, *s2;
+register I32 len;
+{
+    register U8 *a = (U8 *)s1;
+    register U8 *b = (U8 *)s2;
+    while (len--) {
+       if (*a != *b && *a != fold_locale[*b])
+           return 1;
+       a++,b++;
     }
     return 0;
 }
@@ -786,167 +1071,14 @@ register I32 len;
     return newaddr;
 }
 
-#if !defined(I_STDARG) && !defined(I_VARARGS)
-
-/*
- * Fallback on the old hackers way of doing varargs
- */
-
-/*VARARGS1*/
-char *
-mess(pat,a1,a2,a3,a4)
-char *pat;
-long a1, a2, a3, a4;
-{
-    char *s;
-    char *s_start;
-    I32 usermess = strEQ(pat,"%s");
-    SV *tmpstr;
-
-    s = s_start = buf;
-    if (usermess) {
-       tmpstr = sv_newmortal();
-       sv_setpv(tmpstr, (char*)a1);
-       *s++ = SvPVX(tmpstr)[SvCUR(tmpstr)-1];
-    }
-    else {
-       (void)sprintf(s,pat,a1,a2,a3,a4);
-       s += strlen(s);
-    }
-
-    if (s[-1] != '\n') {
-       if (dirty)
-           strcpy(s, " during global destruction.\n");
-       else {
-           if (curcop->cop_line) {
-               (void)sprintf(s," at %s line %ld",
-                 SvPVX(GvSV(curcop->cop_filegv)), (long)curcop->cop_line);
-               s += strlen(s);
-           }
-           if (GvIO(last_in_gv) &&
-               IoLINES(GvIOp(last_in_gv)) ) {
-               (void)sprintf(s,", <%s> %s %ld",
-                 last_in_gv == argvgv ? "" : GvENAME(last_in_gv),
-                 strEQ(rs,"\n") ? "line" : "chunk", 
-                 (long)IoLINES(GvIOp(last_in_gv)));
-               s += strlen(s);
-           }
-           (void)strcpy(s,".\n");
-           s += 2;
-       }
-       if (usermess)
-           sv_catpv(tmpstr,buf+1);
-    }
-
-    if (s - s_start >= sizeof(buf)) {  /* Ooops! */
-       if (usermess)
-           PerlIO_puts(PerlIO_stderr(), SvPVX(tmpstr));
-       else
-           PerlIO_puts(PerlIO_stderr(), buf);
-       PerlIO_puts(PerlIO_stderr(),"panic: message overflow - memory corrupted!\n");
-       my_exit(1);
-    }
-    if (usermess)
-       return SvPVX(tmpstr);
-    else
-       return buf;
-}
-
-/*VARARGS1*/
-void croak(pat,a1,a2,a3,a4)
-char *pat;
-long a1, a2, a3, a4;
-{
-    char *tmps;
-    char *message;
-    HV *stash;
-    GV *gv;
-    CV *cv;
-
-    message = mess(pat,a1,a2,a3,a4);
-    if (diehook) {
-       SV *olddiehook = diehook;
-       diehook = Nullsv;                       /* sv_2cv might call croak() */
-       cv = sv_2cv(olddiehook, &stash, &gv, 0);
-       diehook = olddiehook;
-       if (cv && !CvDEPTH(cv)) {
-           dSP;
-
-           PUSHMARK(sp);
-           EXTEND(sp, 1);
-           PUSHs(sv_2mortal(newSVpv(message,0)));
-           PUTBACK;
-           perl_call_sv((SV*)cv, G_DISCARD);
-       }
-    }
-    if (in_eval) {
-       restartop = die_where(message);
-       Siglongjmp(top_env, 3);
-    }
-    PerlIO_puts(PerlIO_stderr(),message);
-    (void)PerlIO_flush(PerlIO_stderr());
-    if (e_tmpname) {
-       if (e_fp) {
-           PerlIO_close(e_fp);
-           e_fp = Nullfp;
-       }
-       (void)UNLINK(e_tmpname);
-       Safefree(e_tmpname);
-       e_tmpname = Nullch;
-    }
-    statusvalue = SHIFTSTATUS(statusvalue);
-#ifdef VMS
-    my_exit((U32)vaxc$errno?vaxc$errno:errno?errno:statusvalue?statusvalue:SS$_ABORT);
-#else
-    my_exit((U32)((errno&255)?errno:((statusvalue&255)?statusvalue:255)));
-#endif
-}
-
-/*VARARGS1*/
-void warn(pat,a1,a2,a3,a4)
-char *pat;
-long a1, a2, a3, a4;
-{
-    char *message;
-    SV *sv;
-    HV *stash;
-    GV *gv;
-    CV *cv;
-
-    message = mess(pat,a1,a2,a3,a4);
-    if (warnhook) {
-       SV *oldwarnhook = warnhook;
-       warnhook = Nullsv;      /* sv_2cv might end up calling warn() */
-       cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
-       warnhook = oldwarnhook;
-       if (cv && !CvDEPTH(cv)) {
-           dSP;
-           
-           PUSHMARK(sp);
-           EXTEND(sp, 1);
-           PUSHs(sv_2mortal(newSVpv(message,0)));
-           PUTBACK;
-           perl_call_sv((SV*)cv, G_DISCARD);
-           return;
-       }
-    }
-    PerlIO_puts(PerlIO_stderr(),message);
-#ifdef LEAKTEST
-    DEBUG_L(xstat());
-#endif
-    (void)PerlIO_flush(PerlIO_stderr());
-}
-
-#else /* !defined(I_STDARG) && !defined(I_VARARGS) */
-
 #ifdef I_STDARG
 char *
-mess(char *pat, va_list *args)
+mess(const char *pat, va_list *args)
 #else
 /*VARARGS0*/
 char *
 mess(pat, args)
-    char *pat;
+    const char *pat;
     va_list *args;
 #endif
 {
@@ -967,7 +1099,7 @@ mess(pat, args)
     if (usermess) {
        tmpstr = sv_newmortal();
        sv_setpv(tmpstr, va_arg(*args, char *));
-       *s++ = SvPVX(tmpstr)[SvCUR(tmpstr)-1];
+       *s++ = SvCUR(tmpstr) ? SvPVX(tmpstr)[SvCUR(tmpstr)-1] : ' ';
     }
     else {
        (void) vsprintf(s,pat,*args);
@@ -975,7 +1107,7 @@ mess(pat, args)
     }
     va_end(*args);
 
-    if (s[-1] != '\n') {
+    if (!(s > s_start && s[-1] == '\n')) {
        if (dirty)
            strcpy(s, " during global destruction.\n");
        else {
@@ -1015,8 +1147,75 @@ mess(pat, args)
 }
 
 #ifdef I_STDARG
+OP *
+die(const char* pat, ...)
+#else
+/*VARARGS0*/
+OP *
+die(pat, va_alist)
+    const char *pat;
+    va_dcl
+#endif
+{
+    va_list args;
+    char *message;
+    I32 oldrunlevel = runlevel;
+    int was_in_eval = in_eval;
+    HV *stash;
+    GV *gv;
+    CV *cv;
+
+    /* We have to switch back to mainstack or die_where may try to pop
+     * the eval block from the wrong stack if die is being called from a
+     * signal handler.  - dkindred@cs.cmu.edu */
+    if (curstack != mainstack) {
+        dSP;
+        SWITCHSTACK(curstack, mainstack);
+    }
+
+#ifdef I_STDARG
+    va_start(args, pat);
+#else
+    va_start(args);
+#endif
+    message = mess(pat, &args);
+    va_end(args);
+
+    if (diehook) {
+       /* sv_2cv might call croak() */
+       SV *olddiehook = diehook;
+       ENTER;
+       SAVESPTR(diehook);
+       diehook = Nullsv;
+       cv = sv_2cv(olddiehook, &stash, &gv, 0);
+       LEAVE;
+       if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
+           dSP;
+           SV *msg;
+
+           ENTER;
+           msg = newSVpv(message, 0);
+           SvREADONLY_on(msg);
+           SAVEFREESV(msg);
+
+           PUSHMARK(sp);
+           XPUSHs(msg);
+           PUTBACK;
+           perl_call_sv((SV*)cv, G_DISCARD);
+
+           LEAVE;
+       }
+    }
+
+    restartop = die_where(message);
+    if ((!restartop && was_in_eval) || oldrunlevel > 1)
+       JMPENV_JUMP(3);
+    return restartop;
+}
+
+#ifdef I_STDARG
 void
-croak(char* pat, ...)
+croak(const char* pat, ...)
 #else
 /*VARARGS0*/
 void
@@ -1039,50 +1238,46 @@ croak(pat, va_alist)
     message = mess(pat, &args);
     va_end(args);
     if (diehook) {
+       /* sv_2cv might call croak() */
        SV *olddiehook = diehook;
-       diehook = Nullsv;                 /* sv_2cv might call croak() */
+       ENTER;
+       SAVESPTR(diehook);
+       diehook = Nullsv;
        cv = sv_2cv(olddiehook, &stash, &gv, 0);
-       diehook = olddiehook;
-       if (cv && !CvDEPTH(cv)) {
+       LEAVE;
+       if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
            dSP;
+           SV *msg;
+
+           ENTER;
+           msg = newSVpv(message, 0);
+           SvREADONLY_on(msg);
+           SAVEFREESV(msg);
 
            PUSHMARK(sp);
-           EXTEND(sp, 1);
-           PUSHs(sv_2mortal(newSVpv(message,0)));
+           XPUSHs(msg);
            PUTBACK;
            perl_call_sv((SV*)cv, G_DISCARD);
+
+           LEAVE;
        }
     }
     if (in_eval) {
        restartop = die_where(message);
-       Siglongjmp(top_env, 3);
+       JMPENV_JUMP(3);
     }
     PerlIO_puts(PerlIO_stderr(),message);
     (void)PerlIO_flush(PerlIO_stderr());
-    if (e_tmpname) {
-       if (e_fp) {
-           PerlIO_close(e_fp);
-           e_fp = Nullfp;
-       }
-       (void)UNLINK(e_tmpname);
-       Safefree(e_tmpname);
-       e_tmpname = Nullch;
-    }
-    statusvalue = SHIFTSTATUS(statusvalue);
-#ifdef VMS
-    my_exit((U32)(vaxc$errno?vaxc$errno:(statusvalue?statusvalue:44)));
-#else
-    my_exit((U32)((errno&255)?errno:((statusvalue&255)?statusvalue:255)));
-#endif
+    my_failure_exit();
 }
 
 void
 #ifdef I_STDARG
-warn(char* pat,...)
+warn(const char* pat,...)
 #else
 /*VARARGS0*/
 warn(pat,va_alist)
-    char *pat;
+    const char *pat;
     va_dcl
 #endif
 {
@@ -1101,18 +1296,28 @@ warn(pat,va_alist)
     va_end(args);
 
     if (warnhook) {
+       /* sv_2cv might call warn() */
        SV *oldwarnhook = warnhook;
-       warnhook = Nullsv;      /* sv_2cv might end up calling warn() */
+       ENTER;
+       SAVESPTR(warnhook);
+       warnhook = Nullsv;
        cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
-       warnhook = oldwarnhook;
-       if (cv && !CvDEPTH(cv)) {
+       LEAVE;
+       if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
            dSP;
+           SV *msg;
+
+           ENTER;
+           msg = newSVpv(message, 0);
+           SvREADONLY_on(msg);
+           SAVEFREESV(msg);
 
            PUSHMARK(sp);
-           EXTEND(sp, 1);
-           PUSHs(sv_2mortal(newSVpv(message,0)));
+           XPUSHs(msg);
            PUTBACK;
            perl_call_sv((SV*)cv, G_DISCARD);
+
+           LEAVE;
            return;
        }
     }
@@ -1122,9 +1327,9 @@ warn(pat,va_alist)
 #endif
     (void)PerlIO_flush(PerlIO_stderr());
 }
-#endif /* !defined(I_STDARG) && !defined(I_VARARGS) */
 
 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
+#ifndef _WIN32
 void
 my_setenv(nam,val)
 char *nam, *val;
@@ -1145,6 +1350,7 @@ char *nam, *val;
        environ = tmpenv;               /* tell exec where it is now */
     }
     if (!val) {
+       Safefree(environ[i]);
        while (environ[i]) {
            environ[i] = environ[i+1];
            i++;
@@ -1183,6 +1389,36 @@ char *nam;
     }                                  /* potential SEGV's */
     return i;
 }
+
+#else /* if _WIN32 */
+
+void
+my_setenv(nam,val)
+char *nam, *val;
+{
+    register char *envstr;
+    STRLEN namlen = strlen(nam);
+    STRLEN vallen = strlen(val ? val : "");
+
+    New(9040, envstr, namlen + vallen + 3, char);
+    (void)sprintf(envstr,"%s=%s",nam,val);
+    if (!vallen) {
+        /* An attempt to delete the entry.
+        * We try to fix a Win32 process handling goof: Children
+        * of the current process will end up seeing the
+        * grandparent's entry if the current process has never
+        * modified the entry being deleted. So we call _putenv()
+        * twice: once to pretend to modify the entry, and the
+        * second time to actually delete it. GSAR 97-03-19
+        */
+        envstr[namlen+1] = 'X'; envstr[namlen+2] = '\0';
+       (void)_putenv(envstr);
+       envstr[namlen+1] = '\0';
+    }
+    (void)_putenv(envstr);
+}
+
+#endif /* _WIN32 */
 #endif /* !VMS */
 
 #ifdef UNLINK_ALL_VERSIONS
@@ -1234,22 +1470,24 @@ register I32 len;
 }
 #endif
 
-#ifndef HAS_MEMCMP
+#if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
 I32
 my_memcmp(s1,s2,len)
-register unsigned char *s1;
-register unsigned char *s2;
+char *s1;
+char *s2;
 register I32 len;
 {
+    register U8 *a = (U8 *)s1;
+    register U8 *b = (U8 *)s2;
     register I32 tmp;
 
     while (len--) {
-       if (tmp = *s1++ - *s2++)
+       if (tmp = *a++ - *b++)
            return tmp;
     }
     return 0;
 }
-#endif /* HAS_MEMCMP */
+#endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
 
 #if defined(I_STDARG) || defined(I_VARARGS)
 #ifndef HAS_VPRINTF
@@ -1260,7 +1498,9 @@ char *
 int
 #endif
 vsprintf(dest, pat, args)
-char *dest, *pat, *args;
+char *dest;
+const char *pat;
+char *args;
 {
     FILE fakebuf;
 
@@ -1432,8 +1672,8 @@ VTOH(vtohs,short)
 VTOH(vtohl,long)
 #endif
 
-#if  (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS)  /* VMS' my_popen() is in
-                                          VMS.c, same with OS/2. */
+    /* VMS' my_popen() is in VMS.c, same with OS/2. */
+#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
 PerlIO *
 my_popen(cmd,mode)
 char   *cmd;
@@ -1445,15 +1685,18 @@ char    *mode;
     SV *sv;
     I32 doexec = strNE(cmd,"-");
 
+#ifdef OS2
+    if (doexec) {
+       return my_syspopen(cmd,mode);
+    }
+#endif 
     if (pipe(p) < 0)
        return Nullfp;
     this = (*mode == 'w');
     that = !this;
-    if (tainting) {
-       if (doexec) {
-           taint_env();
-           taint_proper("Insecure %s%s", "EXEC");
-       }
+    if (doexec && tainting) {
+       taint_env();
+       taint_proper("Insecure %s%s", "EXEC");
     }
     while ((pid = (doexec?vfork():fork())) < 0) {
        if (errno != EAGAIN) {
@@ -1489,7 +1732,7 @@ char      *mode;
        }
        /*SUPPRESS 560*/
        if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
-           sv_setiv(GvSV(tmpgv),(I32)getpid());
+           sv_setiv(GvSV(tmpgv), (IV)getpid());
        forkprocess = 0;
        hv_clear(pidstatus);    /* we have no children */
        return Nullfp;
@@ -1510,7 +1753,7 @@ char      *mode;
     return PerlIO_fdopen(p[this], mode);
 }
 #else
-#if defined(atarist)
+#if defined(atarist) || defined(DJGPP)
 FILE *popen();
 PerlIO *
 my_popen(cmd,mode)
@@ -1518,7 +1761,8 @@ char      *cmd;
 char   *mode;
 {
     /* Needs work for PerlIO ! */
-    return popen(PerlIO_exportFILE(cmd), mode);
+    /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
+    return popen(PerlIO_exportFILE(cmd, 0), mode);
 }
 #endif
 
@@ -1568,12 +1812,126 @@ int newfd;
 }
 #endif
 
-#if  (!defined(DOSISH) || defined(HAS_FORK)) && !defined(VMS)  /* VMS' my_popen() is in VMS.c */
+
+#ifdef HAS_SIGACTION
+
+Sighandler_t
+rsignal(signo, handler)
+int signo;
+Sighandler_t handler;
+{
+    struct sigaction act, oact;
+
+    act.sa_handler = handler;
+    sigemptyset(&act.sa_mask);
+    act.sa_flags = 0;
+#ifdef SA_RESTART
+    act.sa_flags |= SA_RESTART;        /* SVR4, 4.3+BSD */
+#endif
+    if (sigaction(signo, &act, &oact) == -1)
+       return SIG_ERR;
+    else
+       return oact.sa_handler;
+}
+
+Sighandler_t
+rsignal_state(signo)
+int signo;
+{
+    struct sigaction oact;
+
+    if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
+        return SIG_ERR;
+    else
+        return oact.sa_handler;
+}
+
+int
+rsignal_save(signo, handler, save)
+int signo;
+Sighandler_t handler;
+Sigsave_t *save;
+{
+    struct sigaction act;
+
+    act.sa_handler = handler;
+    sigemptyset(&act.sa_mask);
+    act.sa_flags = 0;
+#ifdef SA_RESTART
+    act.sa_flags |= SA_RESTART;        /* SVR4, 4.3+BSD */
+#endif
+    return sigaction(signo, &act, save);
+}
+
+int
+rsignal_restore(signo, save)
+int signo;
+Sigsave_t *save;
+{
+    return sigaction(signo, save, (struct sigaction *)NULL);
+}
+
+#else /* !HAS_SIGACTION */
+
+Sighandler_t
+rsignal(signo, handler)
+int signo;
+Sighandler_t handler;
+{
+    return signal(signo, handler);
+}
+
+static int sig_trapped;
+
+static
+Signal_t
+sig_trap(signo)
+int signo;
+{
+    sig_trapped++;
+}
+
+Sighandler_t
+rsignal_state(signo)
+int signo;
+{
+    Sighandler_t oldsig;
+
+    sig_trapped = 0;
+    oldsig = signal(signo, sig_trap);
+    signal(signo, oldsig);
+    if (sig_trapped)
+        kill(getpid(), signo);
+    return oldsig;
+}
+
+int
+rsignal_save(signo, handler, save)
+int signo;
+Sighandler_t handler;
+Sigsave_t *save;
+{
+    *save = signal(signo, handler);
+    return (*save == SIG_ERR) ? -1 : 0;
+}
+
+int
+rsignal_restore(signo, save)
+int signo;
+Sigsave_t *save;
+{
+    return (signal(signo, *save) == SIG_ERR) ? -1 : 0;
+}
+
+#endif /* !HAS_SIGACTION */
+
+    /* VMS' my_pclose() is in VMS.c; same with OS/2 */
+#if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
 I32
 my_pclose(ptr)
 PerlIO *ptr;
 {
-    Signal_t (*hstat)(), (*istat)(), (*qstat)();
+    Sigsave_t hstat, istat, qstat;
     int status;
     SV **svp;
     int pid;
@@ -1582,19 +1940,24 @@ PerlIO *ptr;
     pid = (int)SvIVX(*svp);
     SvREFCNT_dec(*svp);
     *svp = &sv_undef;
+#ifdef OS2
+    if (pid == -1) {                   /* Opened by popen. */
+       return my_syspclose(ptr);
+    }
+#endif 
     PerlIO_close(ptr);
 #ifdef UTS
     if(kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
 #endif
-    hstat = signal(SIGHUP, SIG_IGN);
-    istat = signal(SIGINT, SIG_IGN);
-    qstat = signal(SIGQUIT, SIG_IGN);
+    rsignal_save(SIGHUP, SIG_IGN, &hstat);
+    rsignal_save(SIGINT, SIG_IGN, &istat);
+    rsignal_save(SIGQUIT, SIG_IGN, &qstat);
     do {
        pid = wait4pid(pid, &status, 0);
     } while (pid == -1 && errno == EINTR);
-    signal(SIGHUP, hstat);
-    signal(SIGINT, istat);
-    signal(SIGQUIT, qstat);
+    rsignal_restore(SIGHUP, &hstat);
+    rsignal_restore(SIGINT, &istat);
+    rsignal_restore(SIGQUIT, &qstat);
     return(pid < 0 ? pid : status);
 }
 #endif /* !DOSISH */
@@ -1673,10 +2036,16 @@ int status;
     return;
 }
 
-#if defined(atarist) || (defined(OS2) && !defined(HAS_FORK))
+#if defined(atarist) || defined(OS2) || defined(DJGPP)
 int pclose();
+#ifdef HAS_FORK
+int                                    /* Cannot prototype with I32
+                                          in os2ish.h. */
+my_syspclose(ptr)
+#else
 I32
 my_pclose(ptr)
+#endif 
 PerlIO *ptr;
 {
     /* Needs work for PerlIO ! */
@@ -1828,18 +2197,23 @@ char *b;
 }
 #endif /* !HAS_RENAME */
 
-unsigned long
+UV
 scan_oct(start, len, retlen)
 char *start;
 I32 len;
 I32 *retlen;
 {
     register char *s = start;
-    register unsigned long retval = 0;
+    register UV retval = 0;
+    bool overflowed = FALSE;
 
     while (len && *s >= '0' && *s <= '7') {
-       retval <<= 3;
-       retval |= *s++ - '0';
+       register UV n = retval << 3;
+       if (!overflowed && (n >> 3) != retval) {
+           warn("Integer overflow in octal number");
+           overflowed = TRUE;
+       }
+       retval = n | (*s++ - '0');
        len--;
     }
     if (dowarn && len && (*s == '8' || *s == '9'))
@@ -1848,19 +2222,24 @@ I32 *retlen;
     return retval;
 }
 
-unsigned long
+UV
 scan_hex(start, len, retlen)
 char *start;
 I32 len;
 I32 *retlen;
 {
     register char *s = start;
-    register unsigned long retval = 0;
+    register UV retval = 0;
+    bool overflowed = FALSE;
     char *tmp;
 
     while (len-- && *s && (tmp = strchr(hexdigit, *s))) {
-       retval <<= 4;
-       retval |= (tmp - hexdigit) & 15;
+       register UV n = retval << 4;
+       if (!overflowed && (n >> 4) != retval) {
+           warn("Integer overflow in hex number");
+           overflowed = TRUE;
+       }
+       retval = n | (tmp - hexdigit) & 15;
        s++;
     }
     *retlen = s - start;