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/json/json_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/json') diff --git a/apps/examples/json/json_main.c b/apps/examples/json/json_main.c index 26e6b2855..555ae74f8 100644 --- a/apps/examples/json/json_main.c +++ b/apps/examples/json/json_main.c @@ -236,7 +236,11 @@ static void create_objects(void) * ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int json_main(int argc, const char *argv[]) +#endif { /* a bunch of json: */ -- cgit v1.2.3