remove compile warning.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@308 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong 2010-01-15 13:13:10 +00:00
parent 133c2743dc
commit a57580b9cc
3 changed files with 11 additions and 4 deletions

View File

@ -379,7 +379,9 @@ void list_prefix(char* prefix)
const char* name_ptr;
func_cnt = 0;
var_cnt = 0;
var_cnt = 0;
name_ptr = RT_NULL;
{
struct finsh_syscall* index;
for (index = _syscall_table_begin; index < _syscall_table_end; index ++)

View File

@ -68,7 +68,10 @@ char *strdup(const char *s);
int isalpha( int ch );
int atoi(const char* s);
#else
#else
/* use libc of armcc */
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#endif
#endif

View File

@ -113,7 +113,8 @@ char *strdup(const char *s)
return tmp;
}
#endif
#if !defined(__CC_ARM) && !defined(__ICCARM__)
int isalpha( int ch )
{
return (unsigned int)((ch | 0x20) - 'a') < 26u;
@ -142,7 +143,8 @@ int atoi(const char* s)
int isprint(unsigned char ch)
{
return (unsigned int)(ch - ' ') < 127u - ' ';
}
}
#endif
#endif
#ifdef RT_USING_DEVICE