Files
object-testfiles/elf/bpf.c
T
2021-08-25 13:57:54 +10:00

13 lines
114 B
C

struct s {
int x;
char y;
} s = { 1, 2 };
int foo() {
return s.x;
}
int bar() {
return foo();
}