diff options
author | Guido van Rossum <guido@python.org> | 1995-06-14 22:17:37 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-06-14 22:17:37 +0000 |
commit | 9caac9164198be10c00595481938d82c84b0ba4f (patch) | |
tree | b09fd9a05e832b184c961ee0fb789db2bdb56441 /Modules/mathmodule.c | |
parent | 75f288de71e23edc99cd5872055e5a668d477288 (diff) | |
download | cpython-git-9caac9164198be10c00595481938d82c84b0ba4f.tar.gz |
NeXT doesn't like me to declare hypot(double, double)
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r-- | Modules/mathmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index f4089f4e86..9cff9e0fc0 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -40,7 +40,7 @@ extern double ldexp PROTO((double, int)); extern double modf PROTO((double, double *)); #endif -#ifdef HAVE_HYPOT +#if defined(HAVE_HYPOT) && !defined(NeXT) extern double hypot PROTO((double, double)); #endif |