mu578 commented on PR #10415:
URL: https://github.com/apache/nuttx/pull/10415#issuecomment-1695000503

   ```c
   
   #undef  alloca
   #undef  __alloca
   
   #if defined(__GNUC__) && __GNUC__ >= 3
   #  define __alloca(size) __builtin_alloca(size)
   #elif defined(_MSC_VER)
   #  define __alloca(size) _alloca(size)
   #else
   #  warning __alloca defaulting
   #  define __alloca(size) alloca(size)
   #endif
   
   #  define alloca __alloca
   
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to