Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-11-17 21:51:45 +0300
committerEric Andersen <andersen@codepoet.org>2000-11-17 21:51:45 +0300
commita683ee81d918f338a8335d4f03057106b701afec (patch)
tree0d6fa23ebe6b2c0f3ffc26b2e848e3b480804573 /include
parente5aef92e22172d36152bae6e15d5c0419c758121 (diff)
"I will always compile before I commit."
"I will always compile before I commit." "I will always compile before I commit." -Erik
Diffstat (limited to 'include')
-rw-r--r--include/applets.h2
-rw-r--r--include/busybox.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/include/applets.h b/include/applets.h
index a2d73bc59..f21a49076 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -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);
diff --git a/include/busybox.h b/include/busybox.h
index 2bc1c997e..f0f8d5dd9 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -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);