]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - soft-fp/fixdfsi.c
soft-fp: fix horizontal whitespace.
[thirdparty/glibc.git] / soft-fp / fixdfsi.c
index 78f8afa19ce00726c384201e1a855a025417a706..79b2d2150596fb1442564dfcbffd93041876cacf 100644 (file)
 #include "double.h"
 
 SItype
-__fixdfsi(DFtype a)
+__fixdfsi (DFtype a)
 {
   FP_DECL_EX;
-  FP_DECL_D(A);
+  FP_DECL_D (A);
   USItype r;
 
   FP_INIT_EXCEPTIONS;
-  FP_UNPACK_RAW_D(A, a);
-  FP_TO_INT_D(r, A, SI_BITS, 1);
+  FP_UNPACK_RAW_D (A, a);
+  FP_TO_INT_D (r, A, SI_BITS, 1);
   FP_HANDLE_EXCEPTIONS;
 
   return r;