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/romfs/romfs_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/romfs') diff --git a/apps/examples/romfs/romfs_main.c b/apps/examples/romfs/romfs_main.c index 980bd4455..86e4062b3 100644 --- a/apps/examples/romfs/romfs_main.c +++ b/apps/examples/romfs/romfs_main.c @@ -455,7 +455,11 @@ static void checkdirectories(struct node_s *entry) * Name: romfs_main ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int romfs_main(int argc, char *argv[]) +#endif { int ret; -- cgit v1.2.3