From 6566072086bb8a400102ea104b5768465caf9b23 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Wed, 21 May 2014 17:04:14 +0200 Subject: [PATCH] missing file Signed-off-by: Thomas Nagy --- tests/preproc/src/pasting.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/preproc/src/pasting.c diff --git a/tests/preproc/src/pasting.c b/tests/preproc/src/pasting.c new file mode 100644 index 00000000..8aaf9b7f --- /dev/null +++ b/tests/preproc/src/pasting.c @@ -0,0 +1,8 @@ +#define STRINGIFY2( x) #x +#define STRINGIFY(x) STRINGIFY2(x) + +#define PASTE2( x, y) x ## y +#define PASTE(x, y) PASTE2(x, y) + +#include STRINGIFY(PASTE(PREFIX_VAL, PASTE(a, SUFFIX_VAL)).h) +