mirror of https://github.com/PrimeDecomp/prime.git
15 lines
158 B
C
15 lines
158 B
C
|
#ifndef _FLOAT_H_
|
||
|
#define _FLOAT_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define FLT_EPSILON 1.1920928955078125e-07f
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|