nshlib: Fix nxstyle warning

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2020-04-17 11:45:51 +08:00
committed by patacongo
parent de8a56d149
commit 650b58d6b2
13 changed files with 99 additions and 75 deletions

View File

@@ -47,8 +47,9 @@
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/* If a USB device is selected for the NSH console then we need to handle some
* special start-up conditions.
/* If a USB device is selected for the NSH console then we need to handle
* some special start-up conditions.
*/
#undef HAVE_USB_CONSOLE
@@ -138,7 +139,7 @@ void nsh_initialize(void);
*
****************************************************************************/
int nsh_consolemain(int argc, char *argv[]);
int nsh_consolemain(int argc, FAR char *argv[]);
/****************************************************************************
* Name: nsh_telnetstart
@@ -226,7 +227,7 @@ int platform_user_verify(FAR const char *username, FAR const char *password);
*
****************************************************************************/
int nsh_system(int argc, char *argv[]);
int nsh_system(int argc, FAR char *argv[]);
#undef EXTERN
#ifdef __cplusplus