OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / system / core / libacc / tests / data / macros.c
1 #define A B + B
2 #define B C
3
4 int main() {
5     int C = 3;
6     printf("A = %d\n", A);
7 #define C 5
8     printf("A = %d\n", A);
9     return 0;
10 }