[Kernel] Add strdup for armcc

This commit is contained in:
Bernard Xiong
2018-07-15 16:03:40 +08:00
parent c81334f3f8
commit 6964d623aa
2 changed files with 7 additions and 0 deletions

View File

@@ -549,6 +549,10 @@ rt_int32_t rt_strncmp(const char *cs, const char *ct, rt_ubase_t count);
rt_int32_t rt_strcmp(const char *cs, const char *ct);
rt_size_t rt_strlen(const char *src);
char *rt_strdup(const char *s);
#ifdef __CC_ARM
/* leak strdup interface */
char* strdup(const char* str);
#endif
char *rt_strstr(const char *str1, const char *str2);
rt_int32_t rt_sscanf(const char *buf, const char *fmt, ...);