aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/69_macro_concat.c
diff options
context:
space:
mode:
authorjiang <30155751@qq.com>2014-07-01 23:54:49 +0800
committerjiang <30155751@qq.com>2014-07-01 23:54:49 +0800
commit89000c18dc7d5ccb2687948f94fe49d392990dab (patch)
tree02159149404352ed67113ea2a130bfef0e5b4f9e /tests/tests2/69_macro_concat.c
parentb31e80a43a18f6afaaa3bafdd29e6b0172fbf686 (diff)
downloadtinycc-89000c18dc7d5ccb2687948f94fe49d392990dab.tar.gz
tinycc-89000c18dc7d5ccb2687948f94fe49d392990dab.tar.bz2
Rename:
68_macro_concat.c -> 68_macro_param_list_err_1.c 69_macro_concat.c -> 69_macro_param_list_err_2.c and Remove spaces
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;
-}