diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-07 20:46:34 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-07 20:46:34 +0000 |
commit | d62fd84d4b309bc5fa6548288b82f21189d4f53f (patch) | |
tree | 323ecf50e92a496908b6749c1e0cc41a0669d8c3 /include | |
parent | 7930bcf7368e42b327b2a234f4e1be897fc25b1d (diff) |
libbusybox: move (possibly compressed) help stuff into libbusybox.
Makes individual binaries much smaller.
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h index 8b3647f57..3ab90d5c7 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -48,8 +48,9 @@ struct bb_applet { #endif }; -/* Defined in applet.c */ +/* Defined in appletlib.c */ extern const struct bb_applet applets[]; extern const unsigned short NUM_APPLETS; +void bbox_prepare_main(void); #endif /* _BB_INTERNAL_H_ */ |