boot2

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

012-ifdef-ifndef.c (66B)


      1 #define A
      2 #ifdef A
      3 1
      4 #endif
      5 #ifndef B
      6 2
      7 #endif
      8 #ifdef B
      9 99
     10 #endif