diff options
Diffstat (limited to 'usr.bin/lex/dfa.c')
-rw-r--r-- | usr.bin/lex/dfa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/lex/dfa.c b/usr.bin/lex/dfa.c index f8fceb975acd..83eb4547227d 100644 --- a/usr.bin/lex/dfa.c +++ b/usr.bin/lex/dfa.c @@ -6,7 +6,7 @@ * * This code is derived from software contributed to Berkeley by * Vern Paxson. - * + * * The United States Government has rights in this work pursuant * to contract no. DE-AC03-76SF00098 between the United States * Department of Energy and the University of California. @@ -26,7 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -/* $Header: dfa.c,v 1.2 94/01/04 14:33:16 vern Exp $ */ +/* $Header: /home/ncvs/src/usr.bin/lex/dfa.c,v 1.1.1.1 1994/08/24 13:10:33 csgr Exp $ */ #include "flexdef.h" @@ -250,7 +250,7 @@ int *t, *ns_addr, accset[], *nacc_addr, *hv_addr; register int stkpos, ns, tsp; int numstates = *ns_addr, nacc, hashval, transsym, nfaccnum; int stkend, nstate; - static int did_stk_init = false, *stk; + static int did_stk_init = false, *stk; #define MARK_STATE(state) \ trans1[state] = trans1[state] - MARKER_DIFFERENCE; |