1 #include "tree-vect.h" 2 3 short a; 4 char b, e; 5 static short c; 6 int d, f; main()7 int main() { 8 short g; 9 check_vect (); 10 for (; e; ++e) { 11 d = a; 12 f = 0; 13 if (b) 14 d = f = g >= c; 15 } 16 return 0; 17 } 18 19