Specify license of lib/armeabi.c
[tinycc.git] / tests / tests2 / 69_macro_concat.c
blob3b1631349159ddbf61eca4dcc88ea615664c4b7b
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;