11e03e5fe0382339e023cdfbbcd01b29d7e6e22b
[reactos.git] / lib / msvcrt / float / clearfp.c
1 #include <msvcrt/float.h>
2
3 unsigned int _clearfp (void)
4 {
5   unsigned short __res = _statusfp();
6
7 __asm__ __volatile__ (
8         "fclex \n\t"
9         );
10
11   return __res;
12 }
13