summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2007-11-12 05:14:05 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2007-11-12 05:14:05 (GMT)
commit63bf149a264a246f109683d6ac54f84859a89660 (patch)
treeb4aabf6cabd425241282eb25726079a37544ab82 /Python
parentf354894e7b35b09dabacdbcb1b812b290b0457a2 (diff)
downloadcpython-63bf149a264a246f109683d6ac54f84859a89660.zip
cpython-63bf149a264a246f109683d6ac54f84859a89660.tar.gz
cpython-63bf149a264a246f109683d6ac54f84859a89660.tar.bz2
Patch #1418: Make the AC_REPLACE_FUNCS object files actually work.
Diffstat (limited to 'Python')
-rw-r--r--Python/hypot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/hypot.c b/Python/hypot.c
index 755d0c3..9d3c0d0 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)
{