blob: 1934e20a759f92c46f4855235d121a9f8a7281c7 [file] [log] [blame]
extern const int global_a[13];
const int global_b = 0;
typedef struct S1 {
int x;
} T1;
struct S3 {
int x;
} s3;
int func_global_1(int *a) {
*a = global_a[3];
return 0;
}