boot2

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

00045.c (141B)


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