1 2 3 4 5 6 7 8 9 10 11
struct c { double a; } __attribute((packed)) __attribute((aligned)); void f(struct c *, struct c); void g(struct c *ptr) { ptr++; f(ptr, *ptr); }