Change comments/#ifdef structure for declaration for hypot().

This commit is contained in:
Guido van Rossum 1996-08-29 18:12:36 +00:00
parent 57b1822459
commit ace527cbc2

View file

@ -15,8 +15,6 @@
#pragma lib_export on #pragma lib_export on
#endif #endif
#if defined(HAVE_HYPOT) #ifndef HAVE_HYPOT
/* Defined in <math.h> */ extern double hypot Py_PROTO((double, double));
#else
extern double hypot Py_PROTO((double, double)); /* defined in mathmodule.c */
#endif #endif