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