[Python-checkins] CVS: python/dist/src/Include token.h,2.16,2.17

Fred L. Drake python-dev@python.org
Wed, 30 Aug 2000 22:09:59 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory slayer.i.sourceforge.net:/tmp/cvs-serv9237/Include

Modified Files:
	token.h 
Log Message:

Added prototype for PyToken_ThreeChars(), to remove compiler warning
in Parser/grammar.c.


Index: token.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/token.h,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -r2.16 -r2.17
*** token.h	2000/08/24 20:09:45	2.16
--- token.h	2000/08/31 05:09:57	2.17
***************
*** 82,85 ****
--- 82,86 ----
  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