diff options
Diffstat (limited to 'soft-fp/sqrtsf2.c')
-rw-r--r-- | soft-fp/sqrtsf2.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/soft-fp/sqrtsf2.c b/soft-fp/sqrtsf2.c index eb6c4c8ccc..30e267290e 100644 --- a/soft-fp/sqrtsf2.c +++ b/soft-fp/sqrtsf2.c @@ -31,10 +31,12 @@ #include "soft-fp.h" #include "single.h" -SFtype __sqrtsf2(SFtype a) +SFtype +__sqrtsf2(SFtype a) { FP_DECL_EX; - FP_DECL_S(A); FP_DECL_S(R); + FP_DECL_S(A); + FP_DECL_S(R); SFtype r; FP_INIT_ROUNDMODE; |