提交 b4985958 编写于 作者: B Bernard Xiong

[libc] Fix the fputc issue when use microlib.

上级 4ffc675f
......@@ -313,17 +313,18 @@ int system(const char *string)
int fputc(int c, FILE *f)
{
char ch = c;
char ch[2] = {0};
rt_kprintf(&ch);
ch[1] = c;
rt_kprintf(&ch[0]);
return 1;
}
int fgetc(FILE *f)
{
#ifdef RT_USING_POSIX
char ch;
#ifdef RT_USING_POSIX
if (libc_stdio_read(&ch, 1) == 1)
return ch;
#endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册