INT_MAX
#define INT_MAX 0x7fffffff /* max value for an int */
#define INT_MAX ((int)(~0U >> 1))
#define INT_MAX (0x7fffffff)