summaryrefslogtreecommitdiff
path: root/apps/examples/ostest/ostest_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/ostest/ostest_main.c')
-rw-r--r--apps/examples/ostest/ostest_main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/examples/ostest/ostest_main.c b/apps/examples/ostest/ostest_main.c
index 8e78e5d2d..c923c23fe 100644
--- a/apps/examples/ostest/ostest_main.c
+++ b/apps/examples/ostest/ostest_main.c
@@ -223,7 +223,11 @@ static void show_environment(bool var1_valid, bool var2_valid, bool var3_valid)
* Name: user_main
****************************************************************************/
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
static int user_main(int argc, char *argv[])
+#endif
{
int i;
@@ -506,10 +510,14 @@ static void stdio_test(void)
* Public Functions
****************************************************************************/
+#ifdef CONFIG_BUILD_KERNEL
/****************************************************************************
+int main(int argc, FAR char **argv)
* ostest_main
+#else
****************************************************************************/
+#endif
int ostest_main(int argc, FAR char *argv[])
{
int result;