Correctly use Py_PROTO, not obsolete PROTO.

This commit is contained in:
Guido van Rossum 1996-08-08 18:44:36 +00:00
parent 6f90e9862e
commit 1d60614d42

View File

@ -18,5 +18,5 @@
#if defined(HAVE_HYPOT) #if defined(HAVE_HYPOT)
/* Defined in <math.h> */ /* Defined in <math.h> */
#else #else
extern double hypot PROTO((double, double)); /* defined in mathmodule.c */ extern double hypot Py_PROTO((double, double)); /* defined in mathmodule.c */
#endif #endif