aboutsummaryrefslogtreecommitdiffstats
path: root/missing/hypot.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-22 01:28:00 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-22 01:28:00 +0000
commit9c60701e4f39d7039da73e7dd5a36f5edade308a (patch)
tree3475fe7f783e96106c803fca0c28620dd27e9f2f /missing/hypot.c
parent1a61008f18e651ef8848813a34cdebd6d8fd5eba (diff)
downloadruby-9c60701e4f39d7039da73e7dd5a36f5edade308a.tar.gz
* missing.h, missing/*.c: SUSv3 compatible strcasecmp and strncasecmp,
ANSI compatible strtol and strtoul, and ANSI styled other functions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing/hypot.c')
-rw-r--r--missing/hypot.c3
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;