better handling of whole files
[tridge/junkcode.git] / immediate.c
1 #include <stdio.h>
2
3 typedef struct {unsigned x;} FOOBAR;
4
5 #define X_FOOBAR(x) ((FOOBAR) { x })
6 #define FOO_ONE X_FOOBAR(1)
7
8 FOOBAR f = FOO_ONE;   
9
10 static const struct {
11         FOOBAR y; 
12 } f2[] = {
13         {FOO_ONE}
14 };