prime/libc/float.h
Luke Street 1f56cefe8c Halfway match CAABox; continue CBallCamera
Former-commit-id: 602109d8f0a6ca9abd7ccdacab851e6c2a777fb8
2022-09-29 19:55:43 -04:00

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