From: Guido van Rossum Date: Thu, 29 Aug 1996 18:12:36 +0000 (+0000) Subject: Change comments/#ifdef structure for declaration for hypot(). X-Git-Tag: v1.4~328 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ace527cbc2109311caffe896445db2f8751906b8;p=thirdparty%2FPython%2Fcpython.git Change comments/#ifdef structure for declaration for hypot(). --- diff --git a/Include/mymath.h b/Include/mymath.h index c6c6e6bc2781..c4dd68991124 100644 --- a/Include/mymath.h +++ b/Include/mymath.h @@ -15,8 +15,6 @@ #pragma lib_export on #endif -#if defined(HAVE_HYPOT) -/* Defined in */ -#else -extern double hypot Py_PROTO((double, double)); /* defined in mathmodule.c */ +#ifndef HAVE_HYPOT +extern double hypot Py_PROTO((double, double)); #endif