From 8dbef7e28bb85c9106ea80d03114ccfec0033a9a Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 13 Mar 2012 12:47:59 +0000 Subject: Fix some multiply defined symbols by making some static git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4482 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/qencoder/qe_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/examples/qencoder') diff --git a/apps/examples/qencoder/qe_main.c b/apps/examples/qencoder/qe_main.c index 4804600fd..bf743d229 100644 --- a/apps/examples/qencoder/qe_main.c +++ b/apps/examples/qencoder/qe_main.c @@ -111,7 +111,7 @@ static void qe_help(void) ****************************************************************************/ #ifdef CONFIG_NSH_BUILTIN_APPS -int arg_string(FAR char **arg, FAR char **value) +static int arg_string(FAR char **arg, FAR char **value) { FAR char *ptr = *arg; @@ -133,7 +133,7 @@ int arg_string(FAR char **arg, FAR char **value) ****************************************************************************/ #ifdef CONFIG_NSH_BUILTIN_APPS -int arg_decimal(FAR char **arg, FAR long *value) +static int arg_decimal(FAR char **arg, FAR long *value) { FAR char *string; int ret; @@ -149,7 +149,7 @@ int arg_decimal(FAR char **arg, FAR long *value) ****************************************************************************/ #ifdef CONFIG_NSH_BUILTIN_APPS -void parse_args(int argc, FAR char **argv) +static void parse_args(int argc, FAR char **argv) { FAR char *ptr; long value; -- cgit v1.2.3