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.
  */
 

@@ -31,11 +32,12 @@
 
 #include "libm.h"
 #include "complex_wrapper.h"
 
 fcomplex
-casinhf(fcomplex z) {
+casinhf(fcomplex z)
+{
         fcomplex w, r, ans;
 
         F_RE(w) = -F_IM(z);
         F_IM(w) = F_RE(z);
         r = casinf(w);