diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-24 10:58:31 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-24 10:58:31 (GMT) |
commit | 94d8fea62eb49fab7c673b764221020ab5ce7767 (patch) | |
tree | e5fb8e2111decf6b72a875bdabc6536d0fd74c8a /Include/grammar.h | |
parent | 1790dd4b66844bec4dfc27a128d968eda36036cc (diff) | |
download | cpython-94d8fea62eb49fab7c673b764221020ab5ce7767.zip cpython-94d8fea62eb49fab7c673b764221020ab5ce7767.tar.gz cpython-94d8fea62eb49fab7c673b764221020ab5ce7767.tar.bz2 |
Remove function-less prototype (old function that was removed ?) that
happens to be a C++ reserved word, too.
Diffstat (limited to 'Include/grammar.h')
-rw-r--r-- | Include/grammar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/grammar.h b/Include/grammar.h index ba67f90..b842393 100644 --- a/Include/grammar.h +++ b/Include/grammar.h @@ -82,7 +82,6 @@ dfa *adddfa(grammar *g, int type, char *name); int addstate(dfa *d); void addarc(dfa *d, int from, int to, int lbl); dfa *PyGrammar_FindDFA(grammar *g, int type); -char *typename(grammar *g, int lbl); int addlabel(labellist *ll, int type, char *str); int findlabel(labellist *ll, int type, char *str); |