提交 2448b69d 编写于 作者: T tanek liang

[kernel] rename RT_TINY_SIZE to RT_USING_TINY_SIZE

上级 d835d91a
...@@ -135,7 +135,7 @@ RTM_EXPORT(_rt_errno); ...@@ -135,7 +135,7 @@ RTM_EXPORT(_rt_errno);
*/ */
void *rt_memset(void *s, int c, rt_ubase_t count) void *rt_memset(void *s, int c, rt_ubase_t count)
{ {
#ifdef RT_TINY_SIZE #ifdef RT_USING_TINY_SIZE
char *xs = (char *)s; char *xs = (char *)s;
while (count--) while (count--)
...@@ -218,7 +218,7 @@ RTM_EXPORT(rt_memset); ...@@ -218,7 +218,7 @@ RTM_EXPORT(rt_memset);
*/ */
void *rt_memcpy(void *dst, const void *src, rt_ubase_t count) void *rt_memcpy(void *dst, const void *src, rt_ubase_t count)
{ {
#ifdef RT_TINY_SIZE #ifdef RT_USING_TINY_SIZE
char *tmp = (char *)dst, *s = (char *)src; char *tmp = (char *)dst, *s = (char *)src;
while (count--) while (count--)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册