From cfa645a1e95cf79cd5b417012d9144f9bdde7ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 12 Jan 2017 16:43:54 +0100 Subject: [PATCH] [liba] Add a constant representing the minimum float Change-Id: I47c90687007dc4307089f2fe26658ce26c2e56ce --- liba/include/float.h | 1 + 1 file changed, 1 insertion(+) diff --git a/liba/include/float.h b/liba/include/float.h index d0485dc26..40bb24c08 100644 --- a/liba/include/float.h +++ b/liba/include/float.h @@ -2,5 +2,6 @@ #define LIBA_FLOAT_H #define FLT_MAX 1E+37f +#define FLT_MIN 1E-37f #endif