waf

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

pasting.c (211B)


      1 #define STRINGIFY2( x) #x
      2 #define STRINGIFY(x) STRINGIFY2(x)
      3 
      4 #define PASTE2( x, y) x ## y
      5 #define PASTE(x, y) PASTE2(x, y)
      6 
      7 #include STRINGIFY(PASTE(PREFIX_VAL, PASTE(a, SUFFIX_VAL)).h)
      8 
      9 int main() {return 0;}