[Python-checkins] CVS: python/dist/src/Objects unicodeobject.c,2.56,2.56.2.1

Fred L. Drake python-dev@python.org
Thu, 10 Aug 2000 13:48:51 -0700


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

Modified Files:
      Tag: cnri-16-start
	unicodeobject.c 
Log Message:

Make sure we pick up the prototype for fabs(); eliminates a compiler
warning.


Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.56
retrieving revision 2.56.2.1
diff -C2 -r2.56 -r2.56.2.1
*** unicodeobject.c	2000/08/08 08:04:29	2.56
--- unicodeobject.c	2000/08/10 20:48:48	2.56.2.1
***************
*** 68,71 ****
--- 68,73 ----
  #include "ucnhash.h"
  
+ #include "mymath.h"                     /* need fabs() */
+ 
  #if defined(HAVE_LIMITS_H)
  #include <limits.h>