summaryrefslogtreecommitdiff
path: root/apps/examples/cc3000
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/cc3000')
-rw-r--r--apps/examples/cc3000/cc3000basic.c4
-rw-r--r--apps/examples/cc3000/shell.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/apps/examples/cc3000/cc3000basic.c b/apps/examples/cc3000/cc3000basic.c
index 260c6f821..739d91796 100644
--- a/apps/examples/cc3000/cc3000basic.c
+++ b/apps/examples/cc3000/cc3000basic.c
@@ -957,7 +957,11 @@ void ShowInformation(void)
printf(" Connected to SSID: %s\n", localB);
}
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
int c3b_main(int argc, char *argv[])
+#endif
{
char ch='0';
diff --git a/apps/examples/cc3000/shell.c b/apps/examples/cc3000/shell.c
index 084302b7a..616c75154 100644
--- a/apps/examples/cc3000/shell.c
+++ b/apps/examples/cc3000/shell.c
@@ -200,7 +200,11 @@ static void shell_netinit(void)
* Public Functions
****************************************************************************/
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
int shell_main(int argc, char *argv[])
+#endif
{
struct telnetd_config_s config;
int ret;