diff options
author | Ron Yorston | 2019-03-30 07:47:12 +0000 |
---|---|---|
committer | Denys Vlasenko | 2019-03-30 16:46:27 +0100 |
commit | 3193cb56d60e73db8bbadf46947a229b321d6c79 (patch) | |
tree | 3b7c9b0efc0ac30a0da35ed7bccebff59888d5ca /libbb/appletlib.c | |
parent | eabf4b2b5786c1d196cb36711d5a4fb38e980940 (diff) | |
download | busybox-3193cb56d60e73db8bbadf46947a229b321d6c79.zip busybox-3193cb56d60e73db8bbadf46947a229b321d6c79.tar.gz |
libbb: mark scripted_main() as externally visible
Building with individual binaries enabled fails when embedded
script applets are included:
/tmp/ccIvMFZg.o: In function `main':
applet.c:(.text.main+0x20): undefined reference to `scripted_main'
Mark scripted_main() as externally visible.
Reported-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/appletlib.c')
-rw-r--r-- | libbb/appletlib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index c15014a..fa19e84 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -770,6 +770,7 @@ static int find_script_by_name(const char *name) return -1; } +int scripted_main(int argc UNUSED_PARAM, char **argv) MAIN_EXTERNALLY_VISIBLE; int scripted_main(int argc UNUSED_PARAM, char **argv) { int script = find_script_by_name(applet_name); |