mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
function old new delta exit_FAILURE - 7 +7 _exit_FAILURE - 7 +7 run 198 199 +1 restore_state_and_exit 114 115 +1 xbsd_write_bootstrap 399 397 -2 vfork_compressor 209 207 -2 sig_handler 12 10 -2 serial_ctl 154 152 -2 parse_args 1169 1167 -2 onintr 21 19 -2 make_new_session 493 491 -2 login_main 988 986 -2 gotsig 35 33 -2 do_iplink 1315 1313 -2 addgroup_main 397 395 -2 inetd_main 1911 1908 -3 ------------------------------------------------------------------------------ (add/remove: 2/0 grow/shrink: 2/12 up/down: 16/-25) Total: -9 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
24 lines
443 B
C
24 lines
443 B
C
/* Minimal wrapper to build an individual busybox applet.
|
|
*
|
|
* Copyright 2005 Rob Landley <rob@landley.net
|
|
*
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
|
*/
|
|
|
|
const char *applet_name;
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "usage.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
applet_name = argv[0];
|
|
return APPLET_main(argc, argv);
|
|
}
|
|
|
|
void bb_show_usage(void)
|
|
{
|
|
fputs_stdout(APPLET_full_usage "\n");
|
|
exit_FAILURE();
|
|
}
|