rust/src/test/run-make/extern-fn-with-packed-struct/test.c

10 lines
129 B
C
Raw Normal View History

struct __attribute__((packed)) Foo {
char a;
short b;
char c;
};
struct Foo foo(struct Foo foo) {
return foo;
}