diff options
author | Larry Wall <lwall@netlabs.com> | 1991-03-21 00:00:00 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1991-03-21 00:00:00 +0000 |
commit | fe14fcc35f78a371a174a1d14256c2f35ae4262b (patch) | |
tree | d472cb1055c47b9701cb0840969aacdbdbc9354a /malloc.c | |
parent | 27e2fb84680b9cc1db17238d5bf10b97626f477f (diff) | |
download | perl-fe14fcc35f78a371a174a1d14256c2f35ae4262b.tar.gz |
perl 4.0.00: (no release announcement available)perl-4.0.00
So far, 4.0 is still a beta test version. For the last production
version, look in pub/perl.3.0/kits@44.
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 23 |
1 files changed, 4 insertions, 19 deletions
@@ -1,24 +1,8 @@ -/* $Header: malloc.c,v 3.0.1.5 91/01/11 18:09:52 lwall Locked $ +/* $Header: malloc.c,v 4.0 91/03/20 01:28:52 lwall Locked $ * * $Log: malloc.c,v $ - * Revision 3.0.1.5 91/01/11 18:09:52 lwall - * patch42: Configure now checks alignment requirements - * - * Revision 3.0.1.4 90/11/13 15:23:45 lwall - * patch41: added hp malloc union overhead strut (that sounds very blue collar) - * - * Revision 3.0.1.3 90/10/16 15:27:47 lwall - * patch29: various portability fixes - * - * Revision 3.0.1.2 89/11/11 04:36:37 lwall - * patch2: malloc pointer corruption check made more portable - * - * Revision 3.0.1.1 89/10/26 23:15:05 lwall - * patch1: some declarations were missing from malloc.c - * patch1: sparc machines had alignment problems in malloc.c - * - * Revision 3.0 89/10/18 15:20:39 lwall - * 3.0 baseline + * Revision 4.0 91/03/20 01:28:52 lwall + * 4.0 baseline. * */ @@ -242,6 +226,7 @@ morecore(bucket) } } +void free(cp) char *cp; { |