summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1989-11-17 03:02:59 +0000
committerLarry Wall <lwall@jpl-devvax.jpl.nasa.gov>1989-11-17 03:02:59 +0000
commitffed7fefd1d95d05e699dababfbb57ef2497cea1 (patch)
treeac02e16ead3b52915c921545a9ccb80f5c857501 /util.h
parent0d3e774cdb279a1eadd8282d49334b9b1bfd42ed (diff)
downloadperl-ffed7fefd1d95d05e699dababfbb57ef2497cea1.tar.gz
perl 3.0 patch #6 patch 5 continued
See patch 5.
Diffstat (limited to 'util.h')
-rw-r--r--util.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/util.h b/util.h
index 85862eb59b..7a14bcb656 100644
--- a/util.h
+++ b/util.h
@@ -1,4 +1,4 @@
-/* $Header: util.h,v 3.0.1.1 89/10/26 23:28:25 lwall Locked $
+/* $Header: util.h,v 3.0.1.2 89/11/17 15:48:01 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.2 89/11/17 15:48:01 lwall
+ * patch5: BZERO separate from BCOPY now
+ *
* Revision 3.0.1.1 89/10/26 23:28:25 lwall
* patch1: declared bcopy if necessary
*
@@ -33,8 +36,11 @@ char *rninstr();
char *nsavestr();
FILE *mypopen();
int mypclose();
-#ifndef BCOPY
#ifndef MEMCPY
+#ifndef BCOPY
char *bcopy();
#endif
+#ifndef BZERO
+char *bzero();
+#endif
#endif