Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / float / statfp.c
index 5cfeabf..6792fd9 100644 (file)
@@ -1,14 +1,16 @@
-#include <crtdll/float.h>
+#include <msvcrt/float.h>
 
 unsigned int   _statusfp (void)
 {      
 
 register unsigned short __res;
-
+#ifdef __GNUC__
 __asm__ __volatile__ (
        "fstsw  %0 \n\t"
 //     "movzwl %ax, %eax"
        :"=a" (__res)
        );
+#else
+#endif /*__GNUC__*/
        return __res;
 }