From acb38c72fa19b0d6da4673b43cc090088a4bad9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Fri, 20 Jan 2017 16:49:22 +0100 Subject: [PATCH] [liba] Add the constant FLT_EPS Change-Id: I74a9e51e40c5dbc10decc16d10e3054b33d376ff --- liba/include/float.h | 1 + 1 file changed, 1 insertion(+) diff --git a/liba/include/float.h b/liba/include/float.h index 40bb24c08..97c988e8b 100644 --- a/liba/include/float.h +++ b/liba/include/float.h @@ -3,5 +3,6 @@ #define FLT_MAX 1E+37f #define FLT_MIN 1E-37f +#define FLT_EPSILON 1E-5f #endif