NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
float.h
Go to the documentation of this file.
1#pragma once
2/// @file
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8/// @addtogroup stdlib
9/// @{
10
11/// @brief Difference between 1 and the smallest 32-bit floating-point value greater than 1.
12#define FLT_EPSILON (1.0f / 0x800000)
13
14/// @}
15
16#ifdef __cplusplus
17}
18#endif