diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-31 09:28:52 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-31 09:28:52 +0000 |
commit | da6cf3047ecad6e3f2483932134640a77a2c3556 (patch) | |
tree | 2af5cedda35eb1ada2fa9d208291c874afaf171a /libm/powerpc | |
parent | cccc549ced940c85039c8ce263c8bb571f244afd (diff) |
include math.h to get the prototype
Diffstat (limited to 'libm/powerpc')
-rw-r--r-- | libm/powerpc/s_ceil.c | 1 | ||||
-rw-r--r-- | libm/powerpc/s_copysign.c | 1 | ||||
-rw-r--r-- | libm/powerpc/s_floor.c | 1 | ||||
-rw-r--r-- | libm/powerpc/s_logb.c | 1 | ||||
-rw-r--r-- | libm/powerpc/w_scalb.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/libm/powerpc/s_ceil.c b/libm/powerpc/s_ceil.c index a9d5a5b22..8db5ce537 100644 --- a/libm/powerpc/s_ceil.c +++ b/libm/powerpc/s_ceil.c @@ -21,6 +21,7 @@ * * *******************************************************************************/ +#include <math.h> #include <endian.h> static const double twoTo52 = 4503599627370496.0; diff --git a/libm/powerpc/s_copysign.c b/libm/powerpc/s_copysign.c index ece2a3dde..1a988ac87 100644 --- a/libm/powerpc/s_copysign.c +++ b/libm/powerpc/s_copysign.c @@ -22,6 +22,7 @@ * * *******************************************************************************/ +#include <math.h> #include "../fp_private.h" /******************************************************************************* diff --git a/libm/powerpc/s_floor.c b/libm/powerpc/s_floor.c index c5a33cfb7..ff3436707 100644 --- a/libm/powerpc/s_floor.c +++ b/libm/powerpc/s_floor.c @@ -21,6 +21,7 @@ * * *******************************************************************************/ +#include <math.h> #include <endian.h> static const double twoTo52 = 4503599627370496.0; diff --git a/libm/powerpc/s_logb.c b/libm/powerpc/s_logb.c index c3c6d00a8..81daa412e 100644 --- a/libm/powerpc/s_logb.c +++ b/libm/powerpc/s_logb.c @@ -32,6 +32,7 @@ * Standard 754. * *******************************************************************************/ +#include <math.h> #include <endian.h> typedef union diff --git a/libm/powerpc/w_scalb.c b/libm/powerpc/w_scalb.c index e847fc78a..bac99fe04 100644 --- a/libm/powerpc/w_scalb.c +++ b/libm/powerpc/w_scalb.c @@ -19,6 +19,7 @@ ** ***********************************************************************/ +#include <math.h> #include <endian.h> typedef union |