diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/individual.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/applets/individual.c b/applets/individual.c new file mode 100644 index 000000000..0af256c6c --- /dev/null +++ b/applets/individual.c | |||
@@ -0,0 +1,26 @@ | |||
1 | /* Minimal wrapper to build an individual busybox applet. | ||
2 | * | ||
3 | * Copyright 2005 Rob Landley <rob@landley.net | ||
4 | * | ||
5 | * Licensed under GPLv2 or later, see file License in this tarball for details | ||
6 | */ | ||
7 | |||
8 | const char *bb_applet_name; | ||
9 | |||
10 | #include <stdio.h> | ||
11 | #include <stdlib.h> | ||
12 | #include "usage.h" | ||
13 | |||
14 | int main(int argc, char *argv[]) | ||
15 | { | ||
16 | bb_applet_name=argv[0]; | ||
17 | |||
18 | return APPLET_main(argc,argv); | ||
19 | } | ||
20 | |||
21 | void bb_show_usage(void) | ||
22 | { | ||
23 | printf(APPLET_full_usage "\n"); | ||
24 | |||
25 | exit(1); | ||
26 | } | ||