summaryrefslogtreecommitdiff
path: root/x2p/a2p.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 /x2p/a2p.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 'x2p/a2p.h')
-rw-r--r--x2p/a2p.h23
1 files changed, 7 insertions, 16 deletions
diff --git a/x2p/a2p.h b/x2p/a2p.h
index 6b6c410967..7b6f0d48a7 100644
--- a/x2p/a2p.h
+++ b/x2p/a2p.h
@@ -1,4 +1,4 @@
-/* $Header: a2p.h,v 3.0.1.3 90/03/01 10:29:29 lwall Locked $
+/* $Header: a2p.h,v 4.0 91/03/20 01:57:07 lwall Locked $
*
* Copyright (c) 1989, Larry Wall
*
@@ -6,27 +6,18 @@
* as specified in the README file that comes with the perl 3.0 kit.
*
* $Log: a2p.h,v $
- * Revision 3.0.1.3 90/03/01 10:29:29 lwall
- * patch9: a2p.h had bzero() definition depending on BCOPY
- *
- * Revision 3.0.1.2 89/12/21 20:30:29 lwall
- * patch7: arranged so a2p has a chance of running on a 286
- *
- * Revision 3.0.1.1 89/11/11 05:07:00 lwall
- * patch2: Configure may now set -DDEBUGGING
- *
- * Revision 3.0 89/10/18 15:34:14 lwall
- * 3.0 baseline
+ * Revision 4.0 91/03/20 01:57:07 lwall
+ * 4.0 baseline.
*
*/
#define VOIDUSED 1
#include "../config.h"
-#ifndef BCOPY
+#ifndef HAS_BCOPY
# define bcopy(s1,s2,l) memcpy(s2,s1,l)
#endif
-#ifndef BZERO
+#ifndef HAS_BZERO
# define bzero(s,l) memset(s,0,l)
#endif
@@ -265,12 +256,12 @@ void str_free();
EXT int line INIT(0);
EXT FILE *rsfp;
-EXT char buf[1024];
+EXT char buf[2048];
EXT char *bufptr INIT(buf);
EXT STR *linestr INIT(Nullstr);
-EXT char tokenbuf[256];
+EXT char tokenbuf[2048];
EXT int expectterm INIT(TRUE);
#ifdef DEBUGGING