pkarashchenko commented on PR #7284:
URL: https://github.com/apache/incubator-nuttx/pull/7284#issuecomment-1275092828

   Seems recently we merged PR with wrong logic
   ```
   Error: ./misc/lib_impure.c:48:28: error: token "@" is not valid in 
preprocessor expressions
      48 |    (defined(__NEWLIB__) || __NEWLIB__ < 4 || \
   ```
   need to be
   ```
   #if defined(_REENT_SMALL) && \
      (defined(__NEWLIB__) && (__NEWLIB__ < 4 || \
       __NEWLIB__ == 4 && __NEWLIB_MINOR__ < 2))
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to