From 47bea0e67e4093d4482e8781782b98abda134801 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 6 Sep 2014 09:19:15 -0600 Subject: With kernel build, entry point to all tasks is main, not some xyz_main --- apps/examples/smart/smart_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/smart/smart_main.c') diff --git a/apps/examples/smart/smart_main.c b/apps/examples/smart/smart_main.c index d01f814f3..c2c0f663d 100644 --- a/apps/examples/smart/smart_main.c +++ b/apps/examples/smart/smart_main.c @@ -796,7 +796,11 @@ static int smart_directory(void) * Name: smart_main ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int smart_main(int argc, char *argv[]) +#endif { FAR struct mtd_dev_s *mtd; unsigned int i; -- cgit v1.2.3