branch update for HEAD-2003021201
[reactos.git] / lib / msvcrt / float / clearfp.c
index 11e03e5..baf77c2 100644 (file)
@@ -3,11 +3,12 @@
 unsigned int _clearfp (void)
 {
   unsigned short __res = _statusfp();
-
+#ifdef __GNUC__
 __asm__ __volatile__ (
        "fclex \n\t"
        );
-
+#else
+#endif /*__GNUC__*/
   return __res;
 }