summaryrefslogtreecommitdiffstats
path: root/Python/hypot.c
diff options
context:
space:
mode:
authorPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-31 15:28:04 (GMT)
committerPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-31 15:28:04 (GMT)
commit7e018909862a3fe6c571bbb7143f4ffb18ae834c (patch)
treeed39d496c16b58895a2620f43061bc9013c1deca /Python/hypot.c
parent885082ca67d679a0d95218cb38babbcb10b92c3f (diff)
downloadcpython-7e018909862a3fe6c571bbb7143f4ffb18ae834c.zip
cpython-7e018909862a3fe6c571bbb7143f4ffb18ae834c.tar.gz
cpython-7e018909862a3fe6c571bbb7143f4ffb18ae834c.tar.bz2
merge Include/my*.h into Include/pyport.h
marked my*.h as obsolete
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 b21deea..939dedd 100644
--- a/Python/hypot.c
+++ b/Python/hypot.c
@@ -1,8 +1,7 @@
/* hypot() replacement */
#include "config.h"
-#include "myproto.h"
-#include "mymath.h"
+#include "pyport.h"
double hypot(double x, double y)
{