boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

00038.c (216B)


      1 int
      2 main()
      3 {
      4 	int x, *p;
      5 
      6 	if (sizeof(0) < 2)
      7 		return 1;
      8 	if (sizeof 0 < 2)
      9 		return 1;
     10 	if (sizeof(char) < 1)
     11 		return 1;
     12 	if (sizeof(int) - 2 < 0)
     13 		return 1;
     14 	if (sizeof(&x) != sizeof p)
     15 		return 1;
     16 	return 0;
     17 }