diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-03-22 14:38:18 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-03-22 14:38:18 (GMT) |
commit | e2baf98d42baad64a19da5ec35136b0bc81ff7f5 (patch) | |
tree | ad295d0aad96e6a4b66a5e78612a42fb71fafc5b /generic/regc_nfa.c | |
parent | ae6d91316afca4d7295521163352757b570d0e85 (diff) | |
download | tcl-e2baf98d42baad64a19da5ec35136b0bc81ff7f5.zip tcl-e2baf98d42baad64a19da5ec35136b0bc81ff7f5.tar.gz tcl-e2baf98d42baad64a19da5ec35136b0bc81ff7f5.tar.bz2 |
Eliminate some usage of VOID and its variants.
Remove unnecessary #undef's
Diffstat (limited to 'generic/regc_nfa.c')
-rw-r--r-- | generic/regc_nfa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/regc_nfa.c b/generic/regc_nfa.c index fc0c823..e36c5d2 100644 --- a/generic/regc_nfa.c +++ b/generic/regc_nfa.c @@ -617,7 +617,7 @@ moveins( /* - copyins - copy in arcs of a state to another state * Either all arcs, or only non-empty ones as determined by all value. - ^ static VOID copyins(struct nfa *, struct state *, struct state *, int); + ^ static void copyins(struct nfa *, struct state *, struct state *, int); */ static void copyins( @@ -660,7 +660,7 @@ moveouts( /* - copyouts - copy out arcs of a state to another state * Either all arcs, or only non-empty ones as determined by all value. - ^ static VOID copyouts(struct nfa *, struct state *, struct state *, int); + ^ static void copyouts(struct nfa *, struct state *, struct state *, int); */ static void copyouts( |