0068-funclikemacro.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       0068-funclikemacro.c (66B)
       ---
            1 #define ADD(X, Y) (X + Y)
            2 
            3 
            4 int
            5 main()
            6 {
            7         return ADD(1, 2) - 3;
            8 }