diff options
author | 1997-04-07 15:59:53 +0000 | |
---|---|---|
committer | 1997-04-07 15:59:53 +0000 | |
commit | 0a80cfdaca9588b24d0681caaa7e73524ce81761 (patch) | |
tree | c045008dd62edc703ff7bfffc56288c58ade01e2 /usr.bin/awk/awk.h | |
parent | XXX Work around make(1) bug. This must be fixed. (diff) | |
download | wireguard-openbsd-0a80cfdaca9588b24d0681caaa7e73524ce81761.tar.xz wireguard-openbsd-0a80cfdaca9588b24d0681caaa7e73524ce81761.zip |
Back out last changes for now. They cause problems.
Diffstat (limited to 'usr.bin/awk/awk.h')
-rw-r--r-- | usr.bin/awk/awk.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/awk/awk.h b/usr.bin/awk/awk.h index 23d1823c4ec..213e43302c8 100644 --- a/usr.bin/awk/awk.h +++ b/usr.bin/awk/awk.h @@ -193,7 +193,7 @@ extern Node *nullnode; #define NFIELD 4 -extern long pairstack[], paircnt; +extern int pairstack[], paircnt; #define notlegal(n) (n <= FIRSTTOKEN || n >= LASTTOKEN || proctab[n-FIRSTTOKEN] == nullproc) #define isvalue(n) ((n)->ntype == NVALUE) @@ -221,13 +221,13 @@ extern long pairstack[], paircnt; #define NSTATES 32 typedef struct rrow { - long ltype; + int ltype; union { int i; Node *np; char *up; } lval; /* because Al stores a pointer in it! */ - long *lfollow; + int *lfollow; } rrow; typedef struct fa { @@ -235,7 +235,7 @@ typedef struct fa { int anchor; int use; uschar gototab[NSTATES][NCHARS]; - long *posns[NSTATES]; + int *posns[NSTATES]; uschar out[NSTATES]; int initstat; int curstat; |