Dummy implementation of the pthread library.
[oota-llvm.git] / test / CFrontend / 2003-08-30-AggregateInitializer.c
1
2 struct istruct {
3   unsigned char C;
4 };
5
6 struct foo {
7   unsigned int I:1;
8   struct istruct J;
9   unsigned char L[1];
10   unsigned int K:1;
11 };
12
13 struct foo F = { 1, { 7 }, { 123 } , 1 };
14
15