tcc -MD: drop system includes and duplicates
[tinycc.git] / tests / tests2 / 91_ptr_longlong_arith32.c
blobbf07915ab9998d5272a6cb4523e00f5368d70eb9
1 int printf(const char *, ...);
2 char t[] = "012345678";
4 int main(void)
6 char *data = t;
7 unsigned long long r = 4;
8 unsigned a = 5;
9 unsigned long long b = 12;
11 *(unsigned*)(data + r) += a - b;
13 printf("data = \"%s\"\n", data);
14 return 0;