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/hello/hello_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/hello') diff --git a/apps/examples/hello/hello_main.c b/apps/examples/hello/hello_main.c index 95961545c..f73c7adff 100644 --- a/apps/examples/hello/hello_main.c +++ b/apps/examples/hello/hello_main.c @@ -56,7 +56,11 @@ * hello_main ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int hello_main(int argc, char *argv[]) +#endif { printf("Hello, World!!\n"); return 0; -- cgit v1.2.3