diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-24 15:23:28 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-24 15:23:28 +0000 |
commit | b4a886ea79cb37f418cf8ed9a9bc3f798a8e8652 (patch) | |
tree | 283bf4908f787f50a90cb84c014a580485307a9b /include | |
parent | 8fce88b1485f92beaf4bb114d4b2b1195a898461 (diff) | |
download | busybox-w32-b4a886ea79cb37f418cf8ed9a9bc3f798a8e8652.tar.gz busybox-w32-b4a886ea79cb37f418cf8ed9a9bc3f798a8e8652.tar.bz2 busybox-w32-b4a886ea79cb37f418cf8ed9a9bc3f798a8e8652.zip |
random tiny size savings
git-svn-id: svn://busybox.net/trunk/busybox@17070 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h index d20337ff1..a7a0f4915 100644 --- a/include/busybox.h +++ b/include/busybox.h | |||
@@ -9,7 +9,7 @@ | |||
9 | 9 | ||
10 | #include "libbb.h" | 10 | #include "libbb.h" |
11 | 11 | ||
12 | /* order matters: used as index into "install_dir[]" in busybox.c */ | 12 | /* order matters: used as index into "install_dir[]" in busybox.c */ |
13 | enum Location { | 13 | enum Location { |
14 | _BB_DIR_ROOT = 0, | 14 | _BB_DIR_ROOT = 0, |
15 | _BB_DIR_BIN, | 15 | _BB_DIR_BIN, |
@@ -31,8 +31,9 @@ struct BB_applet { | |||
31 | __extension__ enum SUIDRoot need_suid:4; | 31 | __extension__ enum SUIDRoot need_suid:4; |
32 | }; | 32 | }; |
33 | 33 | ||
34 | /* From busybox.c */ | 34 | /* From busybox.c and applet.c */ |
35 | extern const struct BB_applet applets[]; | 35 | extern const struct BB_applet applets[]; |
36 | extern const unsigned short NUM_APPLETS; | ||
36 | 37 | ||
37 | /* Automagically pull in all the applet function prototypes and | 38 | /* Automagically pull in all the applet function prototypes and |
38 | * applet usage strings. These are all of the form: | 39 | * applet usage strings. These are all of the form: |