Change comments/#ifdef structure for declaration for hypot().
diff --git a/Include/mymath.h b/Include/mymath.h
index c6c6e6b..c4dd689 100644
--- a/Include/mymath.h
+++ b/Include/mymath.h
@@ -15,8 +15,6 @@
 #pragma lib_export on
 #endif
 
-#if defined(HAVE_HYPOT)
-/* Defined in <math.h> */
-#else
-extern double hypot Py_PROTO((double, double)); /* defined in mathmodule.c */
+#ifndef HAVE_HYPOT
+extern double hypot Py_PROTO((double, double));
 #endif