diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-31 15:28:04 +0000 |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-31 15:28:04 +0000 |
commit | 7e018909862a3fe6c571bbb7143f4ffb18ae834c (patch) | |
tree | ed39d496c16b58895a2620f43061bc9013c1deca /Python | |
parent | 885082ca67d679a0d95218cb38babbcb10b92c3f (diff) | |
download | cpython-git-7e018909862a3fe6c571bbb7143f4ffb18ae834c.tar.gz |
merge Include/my*.h into Include/pyport.h
marked my*.h as obsolete
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 2 | ||||
-rw-r--r-- | Python/fmod.c | 2 | ||||
-rw-r--r-- | Python/hypot.c | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index a44c976ffb..fd587a093c 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -16,8 +16,6 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "compile.h" #include "eval.h" -#include "mymath.h" - #include <ctype.h> #ifdef HAVE_UNISTD_H diff --git a/Python/fmod.c b/Python/fmod.c index 07283bc12d..dcd1e62dea 100644 --- a/Python/fmod.c +++ b/Python/fmod.c @@ -12,7 +12,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "config.h" -#include "mymath.h" +#include "pyport.h" #include <errno.h> double diff --git a/Python/hypot.c b/Python/hypot.c index b21deea8f7..939deddfff 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) { |