提交 60e88011 编写于 作者: B bernard.xiong

cleanup code for IAR and ARMCC compiler

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@51 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 ab5a04e0
......@@ -50,16 +50,21 @@
typedef unsigned char u_char;
typedef unsigned short u_short;
typedef unsigned long u_long;
typedef unsigned int size_t;
#if !defined(__CC_ARM) && !defined(__ICCARM__)
typedef unsigned int size_t;
#ifndef NULL
#define NULL RT_NULL
#endif
#endif
#define memset rt_memset
#define strlen rt_strlen
#define strncpy rt_strncpy
#define strncmp rt_strncmp
#else
#include <string.h>
#endif
int strcmp (const char *s1, const char *s2);
char *strdup(const char *s);
......@@ -260,10 +265,10 @@ int finsh_init(struct finsh_parser* parser);
int finsh_flush(struct finsh_parser* parser);
/* reset all of finsh */
int finsh_reset(struct finsh_parser* parser);
#ifdef RT_USING_DEVICE
/* set finsh device */
void finsh_set_device(char* device_name);
#endif
#ifdef RT_USING_DEVICE
/* set finsh device */
void finsh_set_device(char* device_name);
#endif
/* run finsh parser to generate abstract synatx tree */
void finsh_parser_run (struct finsh_parser* parser, const unsigned char* string);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册