diff options
Diffstat (limited to 'soft-fp/negsf2.c')
-rw-r--r-- | soft-fp/negsf2.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/soft-fp/negsf2.c b/soft-fp/negsf2.c index 35ece56..1a08d34 100644 --- a/soft-fp/negsf2.c +++ b/soft-fp/negsf2.c @@ -31,9 +31,11 @@ #include "soft-fp.h" #include "single.h" -SFtype __negsf2(SFtype a) +SFtype +__negsf2(SFtype a) { - FP_DECL_S(A); FP_DECL_S(R); + FP_DECL_S(A); + FP_DECL_S(R); SFtype r; FP_UNPACK_RAW_S(A, a); |