diff options
author | Guido van Rossum <guido@python.org> | 1996-07-30 20:44:31 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-30 20:44:31 (GMT) |
commit | 557d6d6608bd2a0486f04814f7ab2f605169d613 (patch) | |
tree | 726c5ac1ba88c1d0f5532c5ebfbae220cf670ae3 | |
parent | 64b65677c969a2e1212ad642d6ea0e0019f89c52 (diff) | |
download | cpython-557d6d6608bd2a0486f04814f7ab2f605169d613.zip cpython-557d6d6608bd2a0486f04814f7ab2f605169d613.tar.gz cpython-557d6d6608bd2a0486f04814f7ab2f605169d613.tar.bz2 |
Don't make an exception for NeXT (BBUM says it's no longer needed).
(But hypot() should really be defined in a separate file, triggered by
configure.)
-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 2beb609..242bd6f 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -43,7 +43,7 @@ extern double modf PROTO((double, double *)); #endif /* _MSC_VER */ -#if defined(HAVE_HYPOT) && !defined(NeXT) +#if defined(HAVE_HYPOT) extern double hypot PROTO((double, double)); #else double hypot(x,y) |