summaryrefslogtreecommitdiff
path: root/Python/hypot.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2007-11-12 05:14:05 +0000
committerMartin v. Löwis <martin@v.loewis.de>2007-11-12 05:14:05 +0000
commit63bf149a264a246f109683d6ac54f84859a89660 (patch)
treeb4aabf6cabd425241282eb25726079a37544ab82 /Python/hypot.c
parentf354894e7b35b09dabacdbcb1b812b290b0457a2 (diff)
downloadcpython-git-63bf149a264a246f109683d6ac54f84859a89660.tar.gz
Patch #1418: Make the AC_REPLACE_FUNCS object files actually work.
Diffstat (limited to 'Python/hypot.c')
-rw-r--r--Python/hypot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/hypot.c b/Python/hypot.c
index 755d0c31c8..9d3c0d0bac 100644
--- a/Python/hypot.c
+++ b/Python/hypot.c
@@ -1,7 +1,6 @@
/* hypot() replacement */
-#include "pyconfig.h"
-#include "pyport.h"
+#include "Python.h"
double hypot(double x, double y)
{