6 lines
160 B
C
6 lines
160 B
C
struct embodied;
|
|
struct disembodied { int x; };
|
|
|
|
void reg1(const struct embodied * foo) { (void)foo; }
|
|
void reg2(const struct disembodied * foo) { (void)foo; }
|