MS-DOS patches to perl.
Apply this patch to the standard perl source, version 4, patch level 19,
using "patch -p."  Do this in the root directory of the perl source
distribution.

You can cat all these patches together and pipe the output to patch -p.

Len Reed
Holos Software, Inc.
..!gatech!holos0!lbr
holos0!lbr@gatech.edu
--------------------------------------
*** util.c.old	Thu Nov 14 07:29:38 1991
--- util.c	Thu Nov 14 08:52:28 1991
***************
*** 80,87 ****
  #endif /* MSDOS */
  {
      char *ptr;
! #ifndef STANDARD_C
      char *malloc();
  #endif /* ! STANDARD_C */
  
  #ifdef MSDOS
--- 80,90 ----
  #endif /* MSDOS */
  {
      char *ptr;
! #ifdef STANDARD_C
! # define Size_t(x) ((size_t)(x))  /* compiler: shut up about malloc(long) */
! #else
      char *malloc();
+ # define Size_t(x) (x)
  #endif /* ! STANDARD_C */
  
  #ifdef MSDOS
***************
*** 94,100 ****
      if ((long)size < 0)
  	fatal("panic: malloc");
  #endif
!     ptr = malloc(size?size:1);	/* malloc(0) is NASTY on our system */
  #ifdef DEBUGGING
  #  ifndef I286
      if (debug & 128)
--- 97,103 ----
      if ((long)size < 0)
  	fatal("panic: malloc");
  #endif
!     ptr = malloc(size?Size_t(size):1);  /* malloc(0) is NASTY on our system */
  #ifdef DEBUGGING
  #  ifndef I286
      if (debug & 128)
***************
*** 144,150 ****
      if ((long)size < 0)
  	fatal("panic: realloc");
  #endif
!     ptr = realloc(where,size?size:1);	/* realloc(0) is NASTY on our system */
  #ifdef DEBUGGING
  #  ifndef I286
      if (debug & 128) {
--- 147,153 ----
      if ((long)size < 0)
  	fatal("panic: realloc");
  #endif
!     ptr = realloc(where,size?Size_t(size):1);	/* realloc(0) is NASTY on our system */
  #ifdef DEBUGGING
  #  ifndef I286
      if (debug & 128) {
