summaryrefslogtreecommitdiff
path: root/Python/hypot.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/hypot.c')
-rw-r--r--Python/hypot.c4
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;