mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-09 19:53:29 +00:00
17 lines
217 B
C
17 lines
217 B
C
#ifndef _FLOAT_H_
|
|
#define _FLOAT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define FLT_MAX 3.402823466e+38f
|
|
#define FLT_EPSILON 1.192092896e-07f
|
|
#define FLT_MIN 1.175494351e-38f
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|