xref: /reactos/sdk/lib/crt/float/amd64/_controlfp.c (revision d41dec2e)
1 /*
2  * PROJECT:     ReactOS CRT
3  * LICENSE:     MIT (https://spdx.org/licenses/MIT)
4  * PURPOSE:     x64 implementation of _controlfp
5  * COPYRIGHT:   Copyright 2022 Timo Kreuzer <timo.kreuzer@reactos.org>
6  */
7 
8 #include <float.h>
9 
10 unsigned int __cdecl _controlfp(unsigned int newval, unsigned int mask)
11 {
12     return _control87(newval, mask & ~_EM_DENORMAL);
13 }
14