- allow '-' for s and S format
[cparser] / parsetest / compoundlit.c
1 int puts(const char *str);
2
3 struct bla {
4         int a;
5         float b;
6         char c[20];
7 };
8
9 int main(void)
10 {
11         struct bla a;
12         a = (struct bla) { 4, 5.2, "Hello" };
13         puts(a.c);
14         return 0;
15 }