diff options
author | Larry Wall <lwall@netlabs.com> | 1991-11-05 06:28:31 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1991-11-05 06:28:31 +0000 |
commit | de3bb51191e884300caf98892ecfcc0ca3ebc09c (patch) | |
tree | 5456fe4ba1ec6e118cea151d5e94225763c05bd7 /util.h | |
parent | f0fcb5529109ae3ced6c7fbb8cbd77162fa9bfdb (diff) | |
download | perl-de3bb51191e884300caf98892ecfcc0ca3ebc09c.tar.gz |
perl 4.0 patch 17: patch #11, continued
See patch #11.
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $RCSfile: util.h,v $$Revision: 4.0.1.1 $$Date: 91/06/07 12:11:00 $ +/* $RCSfile: util.h,v $$Revision: 4.0.1.2 $$Date: 91/11/05 19:18:40 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: util.h,v $ + * Revision 4.0.1.2 91/11/05 19:18:40 lwall + * patch11: safe malloc code now integrated into Perl's malloc when possible + * * Revision 4.0.1.1 91/06/07 12:11:00 lwall * patch4: new copyright notice * @@ -17,8 +20,10 @@ EXT int *screamfirst INIT(Null(int*)); EXT int *screamnext INIT(Null(int*)); +#ifndef safemalloc char *safemalloc(); char *saferealloc(); +#endif char *cpytill(); char *instr(); char *fbminstr(); |