2009-08-23  Ozkan Sezer  <sezeroz@gmail.com>

	* math/*.c: Many whitespace/indentation tidy-ups.
	 Replaced K&R declarations with ANSI ones. Fixed
	 double semicolons.

git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1280 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/math/tanhf.c b/mingw-w64-crt/math/tanhf.c
index 738ed12..6a5f9d8 100644
--- a/mingw-w64-crt/math/tanhf.c
+++ b/mingw-w64-crt/math/tanhf.c
@@ -5,4 +5,6 @@
  */
 #include <math.h>
 float tanhf (float x)
-  {return (float) tanh (x);}
+{
+  return (float) tanh (x);
+}