commit | 1d60614d429eba40cdb3ea5ac0f73f55e15f65fb | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Aug 08 18:44:36 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Aug 08 18:44:36 1996 +0000 |
tree | e7c0decf29067aa992d93b8a4e87b4181016adb8 | |
parent | 6f90e9862e2925e4a770677d753c9e0980a8cc13 [diff] [blame] |
Correctly use Py_PROTO, not obsolete PROTO.
diff --git a/Include/mymath.h b/Include/mymath.h index 13d32a6..c6c6e6b 100644 --- a/Include/mymath.h +++ b/Include/mymath.h
@@ -18,5 +18,5 @@ #if defined(HAVE_HYPOT) /* Defined in <math.h> */ #else -extern double hypot PROTO((double, double)); /* defined in mathmodule.c */ +extern double hypot Py_PROTO((double, double)); /* defined in mathmodule.c */ #endif