Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2018-01-18 18:50:44 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2018-01-18 18:50:44 +0300
commit843c41dcbf05de5ad435e4eb93ce7ec336d60166 (patch)
treeaa855700c0dc36f4dcb38a9d2ec38746eced5259 /newlib/libm/mathfp/ef_hypot.c
parentac8f156011e8cb657667a8007c7d606a1aa67467 (diff)
ansification: unifdef -D__STDC__ libm/mathfptopic/ansification
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libm/mathfp/ef_hypot.c')
-rw-r--r--newlib/libm/mathfp/ef_hypot.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/newlib/libm/mathfp/ef_hypot.c b/newlib/libm/mathfp/ef_hypot.c
index 8e5f4ccef..af0c160fb 100644
--- a/newlib/libm/mathfp/ef_hypot.c
+++ b/newlib/libm/mathfp/ef_hypot.c
@@ -15,12 +15,7 @@
#include "fdlibm.h"
-#ifdef __STDC__
float hypotf(float x, float y)
-#else
- float hypotf(x,y)
- float x, y;
-#endif
{
float a=x,b=y,t1,t2,y1,y2,w;
__int32_t j,k,ha,hb;