/* Empty struct */ #include #include int main(void) { struct s {}; struct s s0; assert(sizeof(s0) == 0); return EXIT_SUCCESS; }