From: Guido van Rossum Date: Thu, 8 Aug 1996 18:44:36 +0000 (+0000) Subject: Correctly use Py_PROTO, not obsolete PROTO. X-Git-Tag: v1.4b2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d60614d429eba40cdb3ea5ac0f73f55e15f65fb;p=python Correctly use Py_PROTO, not obsolete PROTO. --- diff --git a/Include/mymath.h b/Include/mymath.h index 13d32a6e08..c6c6e6bc27 100644 --- a/Include/mymath.h +++ b/Include/mymath.h @@ -18,5 +18,5 @@ #if defined(HAVE_HYPOT) /* Defined in */ #else -extern double hypot PROTO((double, double)); /* defined in mathmodule.c */ +extern double hypot Py_PROTO((double, double)); /* defined in mathmodule.c */ #endif