blob: ca55460f4a638e930a0985cb8e572840c08509b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
typedef struct {
int field1;
int field2;
int newly_added_field;
} StructType;
static StructType global_struct;
static StructType *get_struct_ptr() {
return &global_struct;
}
#define C_LIB_VERSION 20
|