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