Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / busybox / applets / individual.c
blob1e74e4ce58d5509aee2c53e3cb8b63d09c15209f
1 /* Minimal wrapper to build an individual busybox applet.
3 * Copyright 2005 Rob Landley <rob@landley.net
5 * Licensed under GPLv2, see file LICENSE in this source tree.
6 */
8 const char *applet_name;
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include "usage.h"
14 int main(int argc, char **argv)
16 applet_name = argv[0];
17 return APPLET_main(argc,argv);
20 void bb_show_usage(void)
22 fputs(APPLET_full_usage "\n", stdout);
23 exit(EXIT_FAILURE);