diff options
Diffstat (limited to 'x2p/a2p.h')
-rw-r--r-- | x2p/a2p.h | 23 |
1 files changed, 7 insertions, 16 deletions
@@ -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 |