hush/applets/applets.c

19 lines
379 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Stub for linking busybox binary against libbusybox.
*
* Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com>
*
* Licensed under GPLv2, see file License in this tarball for details.
*/
#include <assert.h>
#include "busybox.h"
#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
{
return lbb_main(argv);
2007-04-09 03:05:48 +00:00
}
#endif