Explorar o código

Merge pull request #4936 from greedyhao/newlib-fix

[newlib] fix compile error when closing RT_USING_CONSOLE
Bernard Xiong %!s(int64=3) %!d(string=hai) anos
pai
achega
da4617f2c8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      components/libc/compilers/newlib/syscalls.c

+ 1 - 1
components/libc/compilers/newlib/syscalls.c

@@ -210,7 +210,7 @@ int _wait_r(struct _reent *ptr, int *status)
 _ssize_t _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
 {
 #ifndef RT_USING_DFS
-#ifdef RT_USING_DEVICE
+#if defined(RT_USING_CONSOLE) && defined(RT_USING_DEVICE)
     if (fileno(stdout) == fd)
     {
         rt_device_t console;