update for HEAD-2003021201
[reactos.git] / lib / crtdll / float / clearfp.c
index e824752..38dfd6e 100644 (file)
@@ -1,13 +1,14 @@
-#include <crtdll/float.h>
+#include <msvcrt/float.h>
 
 unsigned int   _clearfp (void)
 {      
-
 unsigned short __res = _statusfp();
-
+#ifdef __GNUC__
 __asm__ __volatile__ (
        "fclex \n\t"
        );
+#else
+#endif /*__GNUC__*/
        return __res;
 }