diff options
Diffstat (limited to 'test/07-pp.c')
| -rw-r--r-- | test/07-pp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/07-pp.c b/test/07-pp.c index 6a50571..47b9dbb 100644 --- a/test/07-pp.c +++ b/test/07-pp.c @@ -6,6 +6,7 @@ Foo,5 9 1506 join: "x ## y" wide L"abc123 猫,€á💫", U+1f98b Output ends here +ok ... */ #include "07-pp.h" @@ -31,6 +32,8 @@ u\ t\ s +#define gnu_ext(a, c...) a(c) + #ifdef CMD_WORKING int main(V) @@ -60,6 +63,7 @@ S\ * escapes the 0, ending the string early. */ ); + gnu_ext(printf, "ok %s\n", "..."); CAT(ret,urn) 0; } |