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/qencoder/qe_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/qencoder') diff --git a/apps/examples/qencoder/qe_main.c b/apps/examples/qencoder/qe_main.c index cad5ceb7d..2b4a34136 100644 --- a/apps/examples/qencoder/qe_main.c +++ b/apps/examples/qencoder/qe_main.c @@ -240,7 +240,11 @@ static void parse_args(int argc, FAR char **argv) * Name: qe_main ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int qe_main(int argc, char *argv[]) +#endif { int32_t position; int fd; -- cgit v1.2.3