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 <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2011-03-28 01:23:38 +02:00
parent 4a2aecb53a
commit 6ec1510f71
3 changed files with 40 additions and 25 deletions

View File

@@ -7,13 +7,19 @@
*
* Licensed under GPLv2, see file LICENSE in this source tree.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#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;