Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / msvcrt / math / fabs.c
index 2e1587a..5db505a 100644 (file)
@@ -25,9 +25,12 @@ double fabs (double __x);
 double fabs (double __x)
 {
   register double __value;
+#ifdef __GNUC__
   __asm __volatile__
     ("fabs"
      : "=t" (__value) : "0" (__x));
-
+#else
+  __value = linkme_fabs(__x);
+#endif /*__GNUC__*/
   return __value;
 }