[Python-checkins] CVS: python/dist/src/Python getargs.c,2.36,2.37

Guido van Rossum python-dev@python.org
Fri, 30 Jun 2000 18:07:40 -0700


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

Modified Files:
	getargs.c 
Log Message:
Jack Jansen, Mac patch:

Include limits.h if we have it.


Index: getargs.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/getargs.c,v
retrieving revision 2.36
retrieving revision 2.37
diff -C2 -r2.36 -r2.37
*** getargs.c	2000/06/30 23:58:06	2.36
--- getargs.c	2000/07/01 01:07:38	2.37
***************
*** 19,22 ****
--- 19,25 ----
  
  #include <ctype.h>
+ #ifdef HAVE_LIMITS_H
+ #include <limits.h>
+ #endif