components/libc_stub/newlib_stub.c
_ssize_t _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
通过fd的值区分 输出 类型socket,file,std
} else if ((fd == STDOUT_FILENO) || (fd == STDERR_FILENO)) {
如果是标志输出,则通过当前控制台输出。
components/libc_stub/newlib_stub.c
_ssize_t _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
通过fd的值区分 输出 类型socket,file,std
} else if ((fd == STDOUT_FILENO) || (fd == STDERR_FILENO)) {
如果是标志输出,则通过当前控制台输出。