summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/util.h b/util.h
index 391fe4725e..85862eb59b 100644
--- a/util.h
+++ b/util.h
@@ -1,4 +1,4 @@
-/* $Header: util.h,v 3.0 89/10/18 15:33:18 lwall Locked $
+/* $Header: util.h,v 3.0.1.1 89/10/26 23:28:25 lwall Locked $
*
* Copyright (c) 1989, Larry Wall
*
@@ -6,6 +6,9 @@
* as specified in the README file that comes with the perl 3.0 kit.
*
* $Log: util.h,v $
+ * Revision 3.0.1.1 89/10/26 23:28:25 lwall
+ * patch1: declared bcopy if necessary
+ *
* Revision 3.0 89/10/18 15:33:18 lwall
* 3.0 baseline
*
@@ -30,3 +33,8 @@ char *rninstr();
char *nsavestr();
FILE *mypopen();
int mypclose();
+#ifndef BCOPY
+#ifndef MEMCPY
+char *bcopy();
+#endif
+#endif