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).
This commit is contained in:
Szabolcs Nagy 2014-09-08 16:24:17 +02:00
parent 0c32c2635e
commit e6403887cc
1 changed files with 1 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#define _GNU_SOURCE #define _GNU_SOURCE
#include <float.h>
#include <math.h> #include <math.h>
#include "libc.h" #include "libc.h"