Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / darwin-minversion-7.c
blob72f495b22a190734ca1da25e3400a1c3351b22ee
1 /* PR target/63810: Test that tiny numbers less than 10 are preserved in
2 four-character macros. */
3 /* Added by Lawrence Velázquez <vq@larryv.me>. */
5 /* { dg-options "-mmacosx-version-min=10.9.1" } */
6 /* { dg-do compile { target *-*-darwin* } } */
8 int
9 main ()
11 #if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ != 1091
12 fail me;
13 #endif
14 return 0;