1 #include <stdio.h>
2 
3 int
main()4 main() {
5 	struct foo {
6 		int	x;
7 		char	buf[8];
8 	};
9 	printf("%d\n", (int)sizeof (struct foo){ 0 });
10 	return 0;
11 }
12 
13 
14