ENH: Some Linux distros don't install xorg-devel, png-devel, etc... when
[cmake.git] / Tests / SimpleExclude / dirD / t9.c
blob321014b179fe9bc98ce2c21893fd9e3b0075304a
1 #include <stdio.h>
3 extern int tlib7func();
5 #ifdef __CLASSIC_C__
6 int main()
8 int ac;
9 char*av[];
10 #else
11 int main(int ac, char*av[])
13 #endif
14 if(ac > 1000){return *av[0];}
15 printf("This is T9. This one should work.\n");
17 if ( tlib7func() != 7 )
19 fprintf(stderr, "Something wrong with T7\n");
20 return 1;
22 return 0;