blob: c05e30d80611f881571061893cf11143c6a25191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* Printing of modifiers */
typedef struct vba_version_tag {
unsigned char signature[4];
const char *name;
int is_mac;
} vba_version_t;
static const vba_version_t vba_version[10];
int f(int x)
{
return sizeof(vba_version[0].signature);
}
|