waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

main.c (509B)


      1 
      2 #if A
      3 const char* c = "foo /*";
      4   #if B
      5 const char* d = " bar */";
      6 // /*
      7     #if C
      8 // */
      9       #include "a.h"
     10     #else
     11       #include "b.h"
     12     #endif
     13   #else
     14     #if C
     15       #include "c.h"
     16     #else
     17       #include "d.h"
     18     #endif
     19   #endif
     20 #elif B
     21   #if C
     22 	# if 1 - 1
     23 		#include "a.h"
     24 	# endif
     25 	# if 0
     26 	#include "a.h"
     27 	# endif
     28      #include <e.h>
     29   #else
     30      #include "f.h"
     31   #endif
     32 #elif C
     33   #include "g.h"
     34 #else
     35   #include "h.h"
     36 #endif
     37 
     38 
     39 /*
     40 #include "a.h"
     41 */
     42 //#include "a.h"
     43 
     44 int main() {
     45 	return 0;
     46 }