aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/69_macro_concat.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests2/69_macro_concat.c')
-rw-r--r--tests/tests2/69_macro_concat.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/tests2/69_macro_concat.c b/tests/tests2/69_macro_concat.c
deleted file mode 100644
index 3b16313..0000000
--- a/tests/tests2/69_macro_concat.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdio.h>
-#define hexCh(c/3) (c >= 10 ? 'a' + c - 10 : '0' + c)
-
-int main(void)
-{
- int c = 0xa;
- printf("hex: %c\n", hexCh(c));
- return 0;
-}