diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-11-17 23:33:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-11-17 23:33:52 +0000 |
commit | c59b95ecd93c19ee66dbc3aa7d5ee7d60eae319b (patch) | |
tree | 9009f5981eff45faa8e615408f738a03a5baad7f /sysdeps/powerpc/fpu | |
parent | f1cb95609a5cf5217a05c74b4549fd41cd88460c (diff) | |
download | glibc-c59b95ecd93c19ee66dbc3aa7d5ee7d60eae319b.tar.gz glibc-c59b95ecd93c19ee66dbc3aa7d5ee7d60eae319b.tar.xz glibc-c59b95ecd93c19ee66dbc3aa7d5ee7d60eae319b.zip |
Remove dl-procinfo.h include.
Diffstat (limited to 'sysdeps/powerpc/fpu')
-rw-r--r-- | sysdeps/powerpc/fpu/e_sqrt.c | 1 | ||||
-rw-r--r-- | sysdeps/powerpc/fpu/e_sqrtf.c | 1 | ||||
-rw-r--r-- | sysdeps/powerpc/fpu/w_sqrtf.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/sysdeps/powerpc/fpu/e_sqrt.c b/sysdeps/powerpc/fpu/e_sqrt.c index eb9984d0a1..e6ba1f979f 100644 --- a/sysdeps/powerpc/fpu/e_sqrt.c +++ b/sysdeps/powerpc/fpu/e_sqrt.c @@ -24,7 +24,6 @@ #include <sysdep.h> #include <ldsodefs.h> -#include <dl-procinfo.h> static const double almost_half = 0.5000000000000001; /* 0.5 + 2^-53 */ static const ieee_float_shape_type a_nan = {.word = 0x7fc00000 }; diff --git a/sysdeps/powerpc/fpu/e_sqrtf.c b/sysdeps/powerpc/fpu/e_sqrtf.c index 9b701012af..335935bb18 100644 --- a/sysdeps/powerpc/fpu/e_sqrtf.c +++ b/sysdeps/powerpc/fpu/e_sqrtf.c @@ -24,7 +24,6 @@ #include <sysdep.h> #include <ldsodefs.h> -#include <dl-procinfo.h> static const float almost_half = 0.50000006; /* 0.5 + 2^-24 */ static const ieee_float_shape_type a_nan = {.word = 0x7fc00000 }; diff --git a/sysdeps/powerpc/fpu/w_sqrtf.c b/sysdeps/powerpc/fpu/w_sqrtf.c index e3f3c995e8..54b4f3be7f 100644 --- a/sysdeps/powerpc/fpu/w_sqrtf.c +++ b/sysdeps/powerpc/fpu/w_sqrtf.c @@ -23,7 +23,6 @@ #include <sysdep.h> #include <ldsodefs.h> -#include <dl-procinfo.h> #ifdef __STDC__ float |