Commit 926f1d67 authored by Fred Drake's avatar Fred Drake

Added prototype for PyToken_ThreeChars(), to remove compiler warning

in Parser/grammar.c.
parent 33642ace
...@@ -81,6 +81,7 @@ extern "C" { ...@@ -81,6 +81,7 @@ extern "C" {
extern DL_IMPORT(char *) _PyParser_TokenNames[]; /* Token names */ extern DL_IMPORT(char *) _PyParser_TokenNames[]; /* Token names */
extern DL_IMPORT(int) PyToken_OneChar(int); extern DL_IMPORT(int) PyToken_OneChar(int);
extern DL_IMPORT(int) PyToken_TwoChars(int, int); extern DL_IMPORT(int) PyToken_TwoChars(int, int);
extern DL_IMPORT(int) PyToken_ThreeChars(int, int, int);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment