summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
committerLarry Wall <lwall@netlabs.com>1991-03-21 00:00:00 +0000
commitfe14fcc35f78a371a174a1d14256c2f35ae4262b (patch)
treed472cb1055c47b9701cb0840969aacdbdbc9354a /util.h
parent27e2fb84680b9cc1db17238d5bf10b97626f477f (diff)
downloadperl-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 'util.h')
-rw-r--r--util.h20
1 files changed, 8 insertions, 12 deletions
diff --git a/util.h b/util.h
index 7a14bcb656..3b077ab356 100644
--- a/util.h
+++ b/util.h
@@ -1,4 +1,4 @@
-/* $Header: util.h,v 3.0.1.2 89/11/17 15:48:01 lwall Locked $
+/* $Header: util.h,v 4.0 91/03/20 01:56:48 lwall Locked $
*
* Copyright (c) 1989, Larry Wall
*
@@ -6,14 +6,8 @@
* 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
- *
- * Revision 3.0 89/10/18 15:33:18 lwall
- * 3.0 baseline
+ * Revision 4.0 91/03/20 01:56:48 lwall
+ * 4.0 baseline.
*
*/
@@ -36,11 +30,13 @@ char *rninstr();
char *nsavestr();
FILE *mypopen();
int mypclose();
-#ifndef MEMCPY
-#ifndef BCOPY
+#ifndef HAS_MEMCPY
+#ifndef HAS_BCOPY
char *bcopy();
#endif
-#ifndef BZERO
+#ifndef HAS_BZERO
char *bzero();
#endif
#endif
+unsigned long scanoct();
+unsigned long scanhex();