Fix memory handling in strxfrm_l [BZ #16009]
[platform/upstream/glibc.git] / soft-fp / negsf2.c
index 1a08d34..5bfc486 100644 (file)
@@ -1,6 +1,6 @@
 /* Software floating-point emulation.
    Return -a
-   Copyright (C) 1997-2013 Free Software Foundation, Inc.
+   Copyright (C) 1997-2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Richard Henderson (rth@cygnus.com) and
                  Jakub Jelinek (jj@ultra.linux.cz).
 #include "single.h"
 
 SFtype
-__negsf2(SFtype a)
+__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);
-  FP_NEG_S(R, A);
-  FP_PACK_RAW_S(r, R);
+  FP_UNPACK_RAW_S (A, a);
+  FP_NEG_S (R, A);
+  FP_PACK_RAW_S (r, R);
 
   return r;
 }