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/touchscreen/tc_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/touchscreen/tc_main.c') diff --git a/apps/examples/touchscreen/tc_main.c b/apps/examples/touchscreen/tc_main.c index 6a1e62d5f..13a16f660 100644 --- a/apps/examples/touchscreen/tc_main.c +++ b/apps/examples/touchscreen/tc_main.c @@ -88,7 +88,11 @@ * Name: tc_main ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int tc_main(int argc, char *argv[]) +#endif { #ifdef CONFIG_EXAMPLES_TOUCHSCREEN_MOUSE struct mouse_report_s sample; -- cgit v1.2.3