pkarashchenko commented on code in PR #6351: URL: https://github.com/apache/incubator-nuttx/pull/6351#discussion_r889189512
########## arch/z80/include/ez80/limits.h: ########## @@ -67,17 +67,28 @@ #define PTR_MIN (-PTR_MAX - 1) #ifdef CONFIG_EZ80_Z80MODE -#define PTR_MAX 32767 -#define UPTR_MAX 65535U +# define PTR_MAX 32767 +# define UPTR_MAX 65535U #else -#define PTR_MAX 8388607 -#define UPTR_MAX 16777215U +# define PTR_MAX 8388607 +# define UPTR_MAX 16777215U #endif #ifdef __clang__ -#define LLONG_MIN (-LLONG_MAX - 1) -#define LLONG_MAX 9223372036854775807LL -#define ULLONG_MAX 18446744073709551615ULL +# define LLONG_MIN (-LLONG_MAX - 1) Review Comment: Me too :) -- 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]
