xiaoxiang781216 edited a comment on pull request #2222: URL: https://github.com/apache/incubator-nuttx/pull/2222#issuecomment-729679114
@yamt after reviewing the final patchset, I found that the common typedef for intmax_t/uintmax_t in include/stdint.h: ``` #ifdef __INT64_DEFINED typedef _int64_t intmax_t; typedef _uint64_t uintmax_t; #else typedef _int32_t intmax_t; typedef _uint32_t uintmax_t; #endif ``` should work fine after we correct _int64_t/_uint64_t/_int32_t/_uint32_t. Why we move intmax_t/uintmax_t to arch/inttype.h? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org