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