diff options
Diffstat (limited to 'missing/hypot.c')
-rw-r--r-- | missing/hypot.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/missing/hypot.c b/missing/hypot.c index aad5259e92..5a663553cf 100644 --- a/missing/hypot.c +++ b/missing/hypot.c @@ -2,8 +2,7 @@ #include <math.h> -double hypot(x,y) - double x, y; +double hypot(double x, double y) { if (x < 0) x = -x; if (y < 0) y = -y; |