From 22730d65608db06500cc6e0be4aaec03238f996b Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 17 May 2013 18:38:42 -0400 Subject: add FLT_TRUE_MIN, etc. macros from C11 there was some question as to how many decimal places to use, since one decimal place is always sufficient to identify the smallest denormal uniquely. for now, I'm following the example in the C standard which is consistent with the other min/max macros we already had in place. --- arch/x86_64/bits/float.h | 1 + 1 file changed, 1 insertion(+) (limited to 'arch/x86_64') diff --git a/arch/x86_64/bits/float.h b/arch/x86_64/bits/float.h index 17fd74d7..9ea29914 100644 --- a/arch/x86_64/bits/float.h +++ b/arch/x86_64/bits/float.h @@ -5,6 +5,7 @@ #define FLT_EVAL_METHOD 0 #endif +#define LDBL_TRUE_MIN 3.6451995318824746025e-4951L #define LDBL_MIN 3.3621031431120935063e-4932L #define LDBL_MAX 1.1897314953572317650e+4932L #define LDBL_EPSILON 1.0842021724855044340e-19L -- cgit v1.2.1