From 1e4dc96d61d1e1309b7117f0304a8ba161666f40 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 4 Jan 2005 20:37:55 +0000 Subject: Dear andersen: Is the change on libbb/loop.c which you commited in 2005/1/3 effective really? The __GLIBC__ macro and __UCLIBC__ macro are defined in feature.h in glibc source, so the change may not be effective. If you want to check this with __GLIBC__, feature.h header is needed. Some architectures(e.g. PPC series) need to include linux/posix_types.h in stead of asm/posix_types.h, so the patch which is attached with this mail include . --- libbb/loop.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libbb/loop.c') diff --git a/libbb/loop.c b/libbb/loop.c index bd837c3b0..8c3ad2ce0 100644 --- a/libbb/loop.c +++ b/libbb/loop.c @@ -19,8 +19,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include #if defined (__GLIBC__) && !defined(__UCLIBC__) -#include +#include #endif #include #include -- cgit v1.2.3