diff options
Diffstat (limited to 'newlib/libm/mathfp/sf_atan2.c')
-rw-r--r-- | newlib/libm/mathfp/sf_atan2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libm/mathfp/sf_atan2.c b/newlib/libm/mathfp/sf_atan2.c index e866ecb..dfe1d33 100644 --- a/newlib/libm/mathfp/sf_atan2.c +++ b/newlib/libm/mathfp/sf_atan2.c @@ -18,8 +18,7 @@ #include "zmath.h" float -_DEFUN (atan2f, (float, float), - float v, +atan2f (float v, float u) { return (atangentf (0.0, v, u, 1)); |