From 6ec1510f719ad7463d76eea9284428cc605d6b38 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 28 Mar 2011 01:23:38 +0200 Subject: applet_tables: do not include libbb.h, that header ir for target builds ...and applets/applet_tables.c is built on *host*. Signed-off-by: Denys Vlasenko --- applets/applet_tables.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'applets') diff --git a/applets/applet_tables.c b/applets/applet_tables.c index 32dcdb73d..3859d7326 100644 --- a/applets/applet_tables.c +++ b/applets/applet_tables.c @@ -7,13 +7,19 @@ * * Licensed under GPLv2, see file LICENSE in this source tree. */ - +#include +#include +#include #include #include #include +#include + +#undef ARRAY_SIZE +#define ARRAY_SIZE(x) ((unsigned)(sizeof(x) / sizeof((x)[0]))) #include "../include/autoconf.h" -#include "../include/busybox.h" +#include "../include/applet_metadata.h" struct bb_applet { const char *name; -- cgit v1.2.3