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/tiff/tiff_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/examples/tiff/tiff_main.c') diff --git a/apps/examples/tiff/tiff_main.c b/apps/examples/tiff/tiff_main.c index d3169d149..82a579878 100644 --- a/apps/examples/tiff/tiff_main.c +++ b/apps/examples/tiff/tiff_main.c @@ -104,7 +104,11 @@ * ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int tiff_main(int argc, char *argv[]) +#endif { struct tiff_info_s info; uint8_t strip[3*256]; -- cgit v1.2.3