[Python-checkins] CVS: python/dist/src/Modules timemodule.c,2.93,2.94

Thomas Wouters python-dev@python.org
Mon, 24 Jul 2000 04:26:29 -0700


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

Modified Files:
	timemodule.c 
Log Message:

ANSIfy yet another hidden function definition.



Index: timemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/timemodule.c,v
retrieving revision 2.93
retrieving revision 2.94
diff -C2 -r2.93 -r2.94
*** timemodule.c	2000/07/22 23:57:55	2.93
--- timemodule.c	2000/07/24 11:26:25	2.94
***************
*** 710,719 ****
  
  static int
- #ifdef MPW
  floatsleep(double secs)
- #else
- 	floatsleep(secs)
- 	double secs;
- #endif /* MPW */
  {
  /* XXX Should test for MS_WIN32 first! */
--- 710,714 ----