VLA code: minor fix
[tinycc.git] / tests / tests2 / 69_macro_param_list_err_2.c
blob06f0b418bab3c453dce642331eada1578f435720
1 #include <stdio.h>
2 #define hexCh(c/3) (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;