land/cmd/land/testdata/struct.c

17 lines
193 B
C
Raw Permalink Normal View History

2018-06-20 14:58:19 +00:00
struct Foo {
int bar;
int baz;
};
__attribute__ ((visibility ("default")))
int main() {
struct Foo foo;
foo.bar = 31337;
foo.baz = 255;
*(struct Foo*)0x200 = foo;
return 0;
}