boot2

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

00057.c (88B)


      1 int
      2 main()
      3 {
      4 	char a[16], b[16];
      5 	
      6 	if(sizeof(a) != sizeof(b))
      7 		return 1;
      8 	return 0;
      9 }