modernc.org/cc@v1.0.1/testdata/issue82.c (about)

     1  #define a(b, c, ...) d(c)
     2  a(1, 2, 3)
     3  #undef a
     4  #define a(b, c...) d(c)
     5  a(1, 2, 3)