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

@@ -20,10 +20,11 @@
  */
 
 /*
  * Copyright 2011 Nexenta Systems, Inc.  All rights reserved.
  */
+
 /*
  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 

@@ -32,10 +33,10 @@
 /*
  * atan2pil(y,x) = atan2l(y, x) / pi
  */
 
 static const long double invpi = 3.183098861837906715377675267450287240689e-1L;
-
 long double
-atan2pil(long double y, long double x) {
+atan2pil(long double y, long double x)
+{
         return (atan2l(y, x) * invpi);
 }