boot2

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

00145.c (210B)


      1 #if 0 != (0 && (0/0))
      2    #error 0 != (0 && (0/0))
      3 #endif
      4 
      5 #if 1 != (-1 || (0/0))
      6    #error 1 != (-1 || (0/0))
      7 #endif
      8 
      9 #if 3 != (-1 ? 3 : (0/0))
     10    #error 3 != (-1 ? 3 : (0/0))
     11 #endif
     12 
     13 int
     14 main()
     15 {
     16 	return 0;
     17 }