"I will always compile before I commit."

"I will always compile before I commit."
"I will always compile before I commit."
 -Erik
This commit is contained in:
Eric Andersen
2000-11-17 18:51:45 +00:00
parent e5aef92e22
commit a683ee81d9
9 changed files with 71 additions and 47 deletions

View File

@@ -371,5 +371,5 @@ const struct BB_applet applets[] = {
};
/* The -1 arises because of the {0,NULL,0,NULL} entry above. */
#define NUM_APPLETS (sizeof (applets) / sizeof (struct BB_applet) - 1)
size_t NUM_APPLETS = (sizeof (applets) / sizeof (struct BB_applet) - 1);

View File

@@ -108,6 +108,9 @@ struct BB_applet {
/* From busybox.c */
extern const struct BB_applet applets[];
extern size_t NUM_APPLETS;
extern int applet_name_compare(const void *x, const void *y);
extern int ar_main(int argc, char **argv);