2001-03-17 06:47:14 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2007-10-10 22:41:07 +08:00
|
|
|
* Stub for linking busybox binary against libbusybox.
|
2001-03-17 06:47:14 +08:00
|
|
|
*
|
2007-11-28 14:49:03 +08:00
|
|
|
* Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com>
|
2001-03-17 06:47:14 +08:00
|
|
|
*
|
2010-08-17 02:14:46 +08:00
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2001-03-17 06:47:14 +08:00
|
|
|
*/
|
2007-02-04 01:27:14 +08:00
|
|
|
#include "busybox.h"
|
|
|
|
|
2007-10-10 22:41:07 +08:00
|
|
|
#if ENABLE_BUILD_LIBBUSYBOX
|
2008-07-05 17:18:54 +08:00
|
|
|
int main(int argc UNUSED_PARAM, char **argv)
|
2007-04-09 11:05:48 +08:00
|
|
|
{
|
2008-03-17 17:04:04 +08:00
|
|
|
return lbb_main(argv);
|
2007-04-09 11:05:48 +08:00
|
|
|
}
|
2007-10-10 22:41:07 +08:00
|
|
|
#endif
|