summaryrefslogtreecommitdiff
path: root/apps/system/hex2bin
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/hex2bin
parentdfbcec0bde2500b34356050537ca9d85c694412b (diff)
downloadnuttx-47bea0e67e4093d4482e8781782b98abda134801.tar.gz
nuttx-47bea0e67e4093d4482e8781782b98abda134801.tar.bz2
nuttx-47bea0e67e4093d4482e8781782b98abda134801.zip
With kernel build, entry point to all tasks is main, not some xyz_main
Diffstat (limited to 'apps/system/hex2bin')
-rw-r--r--apps/system/hex2bin/hex2bin_main.c4
-rw-r--r--apps/system/hex2bin/hex2mem_main.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/apps/system/hex2bin/hex2bin_main.c b/apps/system/hex2bin/hex2bin_main.c
index 4743eda0a..b35ecca19 100644
--- a/apps/system/hex2bin/hex2bin_main.c
+++ b/apps/system/hex2bin/hex2bin_main.c
@@ -117,7 +117,11 @@ static void show_usage(FAR const char *progname, int exitcode)
*
****************************************************************************/
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
int hex2bin_main(int argc, char **argv)
+#endif
{
struct lib_stdinstream_s stdinstream;
struct lib_stdsostream_s stdoutstream;
diff --git a/apps/system/hex2bin/hex2mem_main.c b/apps/system/hex2bin/hex2mem_main.c
index b8b814d60..39560055a 100644
--- a/apps/system/hex2bin/hex2mem_main.c
+++ b/apps/system/hex2bin/hex2mem_main.c
@@ -112,7 +112,11 @@ static void show_usage(FAR const char *progname, int exitcode)
*
****************************************************************************/
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
int hex2mem_main(int argc, char **argv)
+#endif
{
struct lib_stdinstream_s stdinstream;
struct lib_memsostream_s memoutstream;