2015-01-24 17:18:19 -06:00
|
|
|
// ignore-license
|
2014-08-19 15:32:41 -05:00
|
|
|
// Pragma needed cause of gcc bug on windows: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52991
|
|
|
|
#pragma pack(1)
|
2014-08-18 13:12:46 -05:00
|
|
|
struct __attribute__((packed)) Foo {
|
|
|
|
char a;
|
|
|
|
short b;
|
|
|
|
char c;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Foo foo(struct Foo foo) {
|
|
|
|
return foo;
|
|
|
|
}
|