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

@@ -20,19 +20,21 @@
  */
 
 /*
  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  */
+
 /*
  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
 #pragma weak __fabsf = fabsf
 
 #include "libm.h"
 
 float
-fabsf(float x) {
-        *(int *) &x &= ~0x80000000;
+fabsf(float x)
+{
+        *(int *)&x &= ~0x80000000;
         return (x);
 }