Rename:
[tinycc.git] / tests / tests2 / 68_macro_param_list_err_1.c
blobfd08dc767884bfde7e8137d269c8ec91594b73b0
1 #include <stdio.h>
2 #define hexCh(c (c >= 10 ? 'a' + c - 10 : '0' + c)
4 int main(void)
6 int c = 0xa;
7 printf("hex: %c\n", hexCh(c));
8 return 0;