From: Szabolcs Nagy Date: Mon, 8 Sep 2014 14:24:17 +0000 (+0200) Subject: fix exp10l.c to include float.h X-Git-Tag: v1.1.5~22 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e6403887ccf172974d2da5304c3e4043ebad41d2;p=oweals%2Fmusl.git fix exp10l.c to include float.h the previous commit was a no op in exp10l because LDBL_* macros were implicitly 0 (the preprocessor does not warn about undefined symbols). --- diff --git a/src/math/exp10l.c b/src/math/exp10l.c index 33abc8b5..4f9469ae 100644 --- a/src/math/exp10l.c +++ b/src/math/exp10l.c @@ -1,4 +1,5 @@ #define _GNU_SOURCE +#include #include #include "libc.h"