5cfeabfe51cc452531876a0d0e4b7fb44a1ae995
[reactos.git] / reactos / 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 }