diff options
author | Larry Wall <lwall@netlabs.com> | 1991-04-11 20:32:32 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1991-04-11 20:32:32 +0000 |
commit | 35c8bce761056f470189967ccc824e04467151df (patch) | |
tree | 9ee76bba81900f86af5a1070bdd69d3987201c52 /malloc.c | |
parent | 1c3d792e8fc9c2a36edfbd6c01156ef7e635040f (diff) | |
download | perl-35c8bce761056f470189967ccc824e04467151df.tar.gz |
perl 4.0 patch 2: Patch 1 continued
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,6 +1,9 @@ -/* $Header: malloc.c,v 4.0 91/03/20 01:28:52 lwall Locked $ +/* $RCSfile: malloc.c,v $$Revision: 4.0.1.1 $$Date: 91/04/11 17:48:31 $ * * $Log: malloc.c,v $ + * Revision 4.0.1.1 91/04/11 17:48:31 lwall + * patch1: Configure now figures out malloc ptr type + * * Revision 4.0 91/03/20 01:28:52 lwall * 4.0 baseline. * @@ -104,7 +107,7 @@ botch(s) #define ASSERT(p) #endif -char * +MALLOCPTRTYPE * malloc(nbytes) register unsigned nbytes; { @@ -273,7 +276,7 @@ free(cp) */ int reall_srchlen = 4; /* 4 should be plenty, -1 =>'s whole list */ -char * +MALLOCPTRTYPE * realloc(cp, nbytes) char *cp; unsigned nbytes; |