From: Fred Drake Date: Thu, 31 Aug 2000 05:09:57 +0000 (+0000) Subject: Added prototype for PyToken_ThreeChars(), to remove compiler warning X-Git-Tag: v2.0b1~157 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=926f1d673a881644456638d626f8994e4b45c3d9;p=thirdparty%2FPython%2Fcpython.git Added prototype for PyToken_ThreeChars(), to remove compiler warning in Parser/grammar.c. --- diff --git a/Include/token.h b/Include/token.h index d6bdc85cee83..63d92b48373f 100644 --- a/Include/token.h +++ b/Include/token.h @@ -81,6 +81,7 @@ extern "C" { extern DL_IMPORT(char *) _PyParser_TokenNames[]; /* Token names */ extern DL_IMPORT(int) PyToken_OneChar(int); extern DL_IMPORT(int) PyToken_TwoChars(int, int); +extern DL_IMPORT(int) PyToken_ThreeChars(int, int, int); #ifdef __cplusplus }