diff options
Diffstat (limited to 'Python/hypot.c')
-rw-r--r-- | Python/hypot.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Python/hypot.c b/Python/hypot.c index 293aeb819c..b21deea8f7 100644 --- a/Python/hypot.c +++ b/Python/hypot.c @@ -4,9 +4,7 @@ #include "myproto.h" #include "mymath.h" -double hypot(x, y) - double x; - double y; +double hypot(double x, double y) { double yx; |