Files
Upsilon/liba/include/float.h
Émilie Feral acb38c72fa [liba] Add the constant FLT_EPS
Change-Id: I74a9e51e40c5dbc10decc16d10e3054b33d376ff
2017-01-27 11:16:25 +01:00

9 lines
123 B
C

#ifndef LIBA_FLOAT_H
#define LIBA_FLOAT_H
#define FLT_MAX 1E+37f
#define FLT_MIN 1E-37f
#define FLT_EPSILON 1E-5f
#endif