10 lines
129 B
C
10 lines
129 B
C
|
struct __attribute__((packed)) Foo {
|
||
|
char a;
|
||
|
short b;
|
||
|
char c;
|
||
|
};
|
||
|
|
||
|
struct Foo foo(struct Foo foo) {
|
||
|
return foo;
|
||
|
}
|