extern void init_winreg(void);
extern void init_struct(void);
extern void initdatetime(void);
+extern void init_fileio(void);
extern void init_functools(void);
extern void initzlib(void);
{"_winreg", init_winreg},
{"_struct", init_struct},
{"datetime", initdatetime},
+ {"_fileio", init_fileio},
{"_functools", init_functools},
{"xxsubtype", initxxsubtype},
#endif /* MS_WIN32 && !MS_WIN64 */
typedef int pid_t;
-#define hypot _hypot
#include <float.h>
#define Py_IS_NAN _isnan
#define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
#define Py_IS_FINITE(X) _finite(X)
+#define copysign _copysign
+#define hypot _hypot
#endif /* _MSC_VER */
/* Fairly standard from here! */
/* Define to 1 if you have the `copysign' function. */
-/* #define HAVE_COPYSIGN 1*/
+#define HAVE_COPYSIGN 1
/* Define to 1 if you have the `isinf' function. */
#define HAVE_ISINF 1