2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2007-10-10 20:11:07 +05:30
|
|
|
* Stub for linking busybox binary against libbusybox.
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2007-11-28 12:19:03 +05:30
|
|
|
* Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com>
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2007-10-10 20:11:07 +05:30
|
|
|
* Licensed under GPLv2, see file License in this tarball for details.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
|
|
|
|
2004-02-01 15:33:05 +05:30
|
|
|
#include <assert.h>
|
2007-02-03 22:57:14 +05:30
|
|
|
#include "busybox.h"
|
|
|
|
|
2007-10-10 20:11:07 +05:30
|
|
|
#if ENABLE_BUILD_LIBBUSYBOX
|
2008-03-17 14:34:04 +05:30
|
|
|
int main(int argc ATTRIBUTE_UNUSED, char **argv)
|
2007-04-09 08:35:48 +05:30
|
|
|
{
|
2008-03-17 14:34:04 +05:30
|
|
|
return lbb_main(argv);
|
2007-04-09 08:35:48 +05:30
|
|
|
}
|
2007-10-10 20:11:07 +05:30
|
|
|
#endif
|