:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / float / statfp.c
1 #include <crtdll/float.h>
2
3 unsigned int    _statusfp (void)
4 {       
5
6 register unsigned short __res;
7
8 __asm__ __volatile__ (
9         "fstsw  %0 \n\t"
10 //      "movzwl %ax, %eax"
11         :"=a" (__res)
12         );
13         return __res;
14 }