diff options
Diffstat (limited to 'lib/libm/cbrtl.c')
| -rw-r--r-- | lib/libm/cbrtl.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libm/cbrtl.c b/lib/libm/cbrtl.c index 12c82f03..cad8f153 100644 --- a/lib/libm/cbrtl.c +++ b/lib/libm/cbrtl.c @@ -15,7 +15,11 @@ * and David A. Schultz. */ -#include "libm.h" +#include "libm.h" // for ldshape, ldshape::(anonymous) + +#include <float.h> // for LDBL_MANT_DIG, LDBL_MAX_EXP +#include <math.h> // for double_t, cbrtl, float_t +#include <stdint.h> // for uint32_t #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 long double cbrtl(long double x) |
