aboutsummaryrefslogtreecommitdiff
path: root/applets/applets.c
blob: 40c482408168a91e96fec4a2caa20db79339771a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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
int main(int argc, char **argv)
{
	return lbb_main(argc, argv);
}
#endif