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/system/sdcard/sdcard.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/system/sdcard/sdcard.c') diff --git a/apps/system/sdcard/sdcard.c b/apps/system/sdcard/sdcard.c index fba01c3ae..708ca4676 100644 --- a/apps/system/sdcard/sdcard.c +++ b/apps/system/sdcard/sdcard.c @@ -104,7 +104,11 @@ static int sdcard_start(int slotno) * Public Functions ****************************************************************************/ +#ifdef CONFIG_BUILD_KERNEL +int main(int argc, FAR char **argv) +#else int sdcard_main(int argc, char *argv[]) +#endif { int slotno = 0; -- cgit v1.2.3