ReactOS 0.4.15-dev-7924-g5949c20
_controlfp.c
Go to the documentation of this file.
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
10unsigned int __cdecl _controlfp(unsigned int newval, unsigned int mask)
11{
12 return _control87(newval, mask & ~_EM_DENORMAL);
13}
#define __cdecl
Definition: accygwin.h:79
unsigned int __cdecl _controlfp(unsigned int newval, unsigned int mask)
Definition: _controlfp.c:10
GLenum GLint GLuint mask
Definition: glext.h:6028
#define _EM_DENORMAL
Definition: float.h:48
unsigned int __cdecl _control87(unsigned int, unsigned int)
Definition: _control87.c:16