mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
0ef64bdb40
This change retains "or later" state! No licensing _changes_ here, only form is adjusted (article, space between "GPL" and "v2" and so on). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
17 lines
350 B
C
17 lines
350 B
C
/* 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 source tree.
|
|
*/
|
|
#include "busybox.h"
|
|
|
|
#if ENABLE_BUILD_LIBBUSYBOX
|
|
int main(int argc UNUSED_PARAM, char **argv)
|
|
{
|
|
return lbb_main(argv);
|
|
}
|
|
#endif
|