summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1991-11-05 06:28:31 +0000
committerLarry Wall <lwall@netlabs.com>1991-11-05 06:28:31 +0000
commitde3bb51191e884300caf98892ecfcc0ca3ebc09c (patch)
tree5456fe4ba1ec6e118cea151d5e94225763c05bd7 /util.h
parentf0fcb5529109ae3ced6c7fbb8cbd77162fa9bfdb (diff)
downloadperl-de3bb51191e884300caf98892ecfcc0ca3ebc09c.tar.gz
perl 4.0 patch 17: patch #11, continued
See patch #11.
Diffstat (limited to 'util.h')
-rw-r--r--util.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/util.h b/util.h
index 8d013ff62a..a712436ff6 100644
--- a/util.h
+++ b/util.h
@@ -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();