Another whack at scripts/individual. Now builds 212 applets.

This commit is contained in:
Rob Landley
2006-08-09 20:56:23 +00:00
parent e55a73c7a8
commit 519d7df930
9 changed files with 84 additions and 50 deletions

View File

@@ -222,8 +222,10 @@ extern void chomp(char *s);
extern void trim(char *s);
extern char *skip_whitespace(const char *);
#ifndef BUILD_INDIVIDUAL
extern struct BB_applet *find_applet_by_name(const char *name);
void run_applet_by_name(const char *name, int argc, char **argv);
#endif
/* dmalloc will redefine these to it's own implementation. It is safe
* to have the prototypes here unconditionally. */

View File

@@ -154,6 +154,7 @@ __extension__ typedef unsigned long long __u64;
#if defined __GLIBC__ || defined __UCLIBC__ \
|| defined __dietlibc__ || defined _NEWLIB_VERSION
#define _XOPEN_SOURCE
#include <features.h>
#define HAVE_FEATURES_H
#include <stdint.h>