xref: /llvm-project/clang/test/PCH/external-defs.h (revision 2e43ab535b9c4cc4a91eccacb00499b99bd78bcc)
1 // Helper for external-defs.c test
2 
3 // Tentative definitions
4 int x;
5 int x2;
6 
7 // Should not show up
8 static int z;
9 
10 int incomplete_array[];
11 int incomplete_array2[];
12 
13 struct S s;
14