projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0c32c26
)
fix exp10l.c to include float.h
author
Szabolcs Nagy
<nsz@port70.net>
Mon, 8 Sep 2014 14:24:17 +0000
(16:24 +0200)
committer
Szabolcs Nagy
<nsz@port70.net>
Mon, 8 Sep 2014 14:24:17 +0000
(16:24 +0200)
the previous commit was a no op in exp10l because LDBL_* macros
were implicitly 0 (the preprocessor does not warn about undefined
symbols).
src/math/exp10l.c
patch
|
blob
|
history
diff --git
a/src/math/exp10l.c
b/src/math/exp10l.c
index 33abc8b52e5213cf3a762226203dc5d06a03b52f..4f9469aebd7b17e2b2d3955436a7f82bd823c1a7 100644
(file)
--- a/
src/math/exp10l.c
+++ b/
src/math/exp10l.c
@@
-1,4
+1,5
@@
#define _GNU_SOURCE
+#include <float.h>
#include <math.h>
#include "libc.h"