summaryrefslogtreecommitdiffstats
path: root/Parser/grammar1.c
diff options
context:
space:
mode:
Diffstat (limited to 'Parser/grammar1.c')
-rw-r--r--Parser/grammar1.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/Parser/grammar1.c b/Parser/grammar1.c
index f9a24c0..16821f4 100644
--- a/Parser/grammar1.c
+++ b/Parser/grammar1.c
@@ -18,9 +18,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
/* Return the DFA for the given type */
dfa *
-PyGrammar_FindDFA(g, type)
- grammar *g;
- register int type;
+PyGrammar_FindDFA(grammar *g, register int type)
{
register dfa *d;
#if 1
@@ -42,8 +40,7 @@ PyGrammar_FindDFA(g, type)
}
char *
-PyGrammar_LabelRepr(lb)
- label *lb;
+PyGrammar_LabelRepr(label *lb)
{
static char buf[100];