]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - soft-fp/floatuntisf.c
support: Add missing EOL terminators on timespec
[thirdparty/glibc.git] / soft-fp / floatuntisf.c
index d690e7312b7d95cb15663e031fa32cf6d1809782..5cf0331932750c82a6169cc4a61b40e0fcf52a57 100644 (file)
@@ -1,6 +1,6 @@
 /* Software floating-point emulation.
    Convert a 128bit unsigned integer to IEEE single
-   Copyright (C) 2007-2013 Free Software Foundation, Inc.
+   Copyright (C) 2007-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Uros Bizjak (ubizjak@gmail.com).
 
 #include "single.h"
 
 SFtype
-__floatuntisf(UTItype i)
+__floatuntisf (UTItype i)
 {
   FP_DECL_EX;
-  FP_DECL_S(A);
+  FP_DECL_S (A);
   SFtype a;
 
   FP_INIT_ROUNDMODE;
-  FP_FROM_INT_S(A, i, TI_BITS, UTItype);
-  FP_PACK_RAW_S(a, A);
+  FP_FROM_INT_S (A, i, TI_BITS, UTItype);
+  FP_PACK_RAW_S (a, A);
   FP_HANDLE_EXCEPTIONS;
 
   return a;