[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_int32_t rt_strcmp(const char *cs, const char *ct);
rt_size_t rt_strlen(const char *src); rt_size_t rt_strlen(const char *src);
char *rt_strdup(const char *s); 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); char *rt_strstr(const char *str1, const char *str2);
rt_int32_t rt_sscanf(const char *buf, const char *fmt, ...); rt_int32_t rt_sscanf(const char *buf, const char *fmt, ...);

View File

@ -531,6 +531,9 @@ char *rt_strdup(const char *s)
return tmp; return tmp;
} }
RTM_EXPORT(rt_strdup); RTM_EXPORT(rt_strdup);
#ifdef __CC_ARM
char *strdup(const char *s) __attribute__((alias("rt_strdup")));
#endif
#endif #endif
/** /**