From: Thomas Schwinge Date: Sun, 22 Jul 2012 20:25:14 +0000 (+0200) Subject: Add missing includes. X-Git-Tag: glibc-2.17~811 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c23c33b01e2043fefd00b353b45844822905b43b;p=thirdparty%2Fglibc.git Add missing includes. Follow-up to commits 38de94a5efbc3de186d6f287d666f74e5b4c8247, 76da7265320010c7a273ed99f53938c0f32d5fad. --- diff --git a/ChangeLog b/ChangeLog index f37974a9e30..4c474bb41f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-07-22 Thomas Schwinge + + * math/w_ilogb.c: Include . + * math/w_ilogbl.c: Likewise. + 2012-07-20 Joseph Myers * manual/lang.texi (__va_copy): Document primarily as ISO C99 diff --git a/math/w_ilogb.c b/math/w_ilogb.c index c87b517c504..7cb897ad1d3 100644 --- a/math/w_ilogb.c +++ b/math/w_ilogb.c @@ -18,6 +18,7 @@ #include #include +#include #include /* wrapper ilogb */ @@ -34,7 +35,6 @@ __ilogb (double x) } return r; } - weak_alias (__ilogb, ilogb) #ifdef NO_LONG_DOUBLE strong_alias (__ilogb, __ilogbl) diff --git a/math/w_ilogbf.c b/math/w_ilogbf.c index 27a0c582d3f..aa48bc4c309 100644 --- a/math/w_ilogbf.c +++ b/math/w_ilogbf.c @@ -35,5 +35,4 @@ __ilogbf (float x) } return r; } - weak_alias (__ilogbf, ilogbf) diff --git a/math/w_ilogbl.c b/math/w_ilogbl.c index 8c30caa48ba..7cfc648e8e7 100644 --- a/math/w_ilogbl.c +++ b/math/w_ilogbl.c @@ -18,6 +18,7 @@ #include #include +#include #include /* wrapper ilogbl */