Print this page
11210 libm should be cstyle(1ONBLD) clean

@@ -20,31 +20,35 @@
  */
 
 /*
  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  */
+
 /*
  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
 #pragma weak fminl = __fminl
 
 #include "libm.h"       /* for islessequal macro */
 
 long double
-__fminl(long double x, long double y) {
+__fminl(long double x, long double y)
+{
         union {
 #if defined(__sparc)
                 unsigned i[4];
 #elif defined(__x86)
                 unsigned i[3];
 #else
 #error Unknown architecture
 #endif
+
                 long double ld;
         } xx, yy;
+
         unsigned s;
 
         /* if y is nan, replace it by x */
         if (y != y)
                 y = x;