1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <stdint.h> 4 main()5int main() 6 { 7 int check_UINT8_C = 8 (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1; 9 int check_UINT16_C = 10 (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1; 11 if (check_UINT8_C == -1 || check_UINT16_C == -1) 12 abort (); 13 return 0; 14 } 15 16