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/posix_spawn/spawn_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/posix_spawn') diff --git a/apps/examples/posix_spawn/spawn_main.c b/apps/examples/posix_spawn/spawn_main.c index dff0f7c1e..a30ea3ff2 100644 --- a/apps/examples/posix_spawn/spawn_main.c +++ b/apps/examples/posix_spawn/spawn_main.c @@ -222,7 +222,11 @@ static inline void testheader(FAR const char *progname) * Name: spawn_main ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int spawn_main(int argc, char *argv[]) +#endif { posix_spawn_file_actions_t file_actions; posix_spawnattr_t attr; -- cgit v1.2.3