summaryrefslogtreecommitdiff
path: root/apps/system/sudoku
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-06 09:19:15 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-06 09:19:15 -0600
commit47bea0e67e4093d4482e8781782b98abda134801 (patch)
tree950f50b0f2119e9785e89becdaf239bb298d5146 /apps/system/sudoku
parentdfbcec0bde2500b34356050537ca9d85c694412b (diff)
downloadpx4-nuttx-47bea0e67e4093d4482e8781782b98abda134801.tar.gz
px4-nuttx-47bea0e67e4093d4482e8781782b98abda134801.tar.bz2
px4-nuttx-47bea0e67e4093d4482e8781782b98abda134801.zip
With kernel build, entry point to all tasks is main, not some xyz_main
Diffstat (limited to 'apps/system/sudoku')
-rwxr-xr-xapps/system/sudoku/sudoku.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/system/sudoku/sudoku.c b/apps/system/sudoku/sudoku.c
index 80fbfbc82..69a9b7a60 100755
--- a/apps/system/sudoku/sudoku.c
+++ b/apps/system/sudoku/sudoku.c
@@ -500,7 +500,11 @@ static inline void count_cells(void)
* Private Functions
****************************************************************************/
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
int sudoku_main(int argc, char **argv, char **envp)
+#endif
{
int cmd;
int nchanged;