2012-06-15 niXman <i.nixman@gmail.com>

        * math.h (fabs, fabsf): Fix typo.



git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@5102 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-headers/crt/ChangeLog b/mingw-w64-headers/crt/ChangeLog
index b282cb9..b012f4e 100644
--- a/mingw-w64-headers/crt/ChangeLog
+++ b/mingw-w64-headers/crt/ChangeLog
@@ -1,3 +1,7 @@
+2012-06-15 niXman <i.nixman@gmail.com>
+
+	* math.h (fabs, fabsf): Fix typo.
+
 2012-05-31  Kai Tietz  <ktietz@redhat.com>
 
 	* crtdefs.h (errcode): Don't define it by default.
diff --git a/mingw-w64-headers/crt/math.h b/mingw-w64-headers/crt/math.h
index 7e5a680..b0f0e24 100644
--- a/mingw-w64-headers/crt/math.h
+++ b/mingw-w64-headers/crt/math.h
@@ -127,7 +127,7 @@
   __CRT_INLINE double __cdecl fabs (double x)
   {
 #ifdef __x86_64__
-    retrun __builtin_fabs (x);
+    return __builtin_fabs (x);
 #else
     double res = 0.0;
     __asm__ __volatile__ ("fabs;" : "=t" (res) : "0" (x));
@@ -580,7 +580,7 @@
   __CRT_INLINE float __cdecl fabsf (float x)
   {
 #ifdef __x86_64__
-    retrun __builtin_fabsf (x);
+    return __builtin_fabsf (x);
 #else
     float res = 0.0F;
     __asm__ __volatile__ ("fabs;" : "=t" (res) : "0" (x));