]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Change comments/#ifdef structure for declaration for hypot().
authorGuido van Rossum <guido@python.org>
Thu, 29 Aug 1996 18:12:36 +0000 (18:12 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 29 Aug 1996 18:12:36 +0000 (18:12 +0000)
Include/mymath.h

index c6c6e6bc27818a3bb43c5252c191d77ec9fbaa5f..c4dd68991124cfe0456200930ad06bee094265c7 100644 (file)
@@ -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