diff options
Diffstat (limited to 'Python/hypot.c')
-rw-r--r-- | Python/hypot.c | 3 |
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) { |