- BugFix: gcc optimizes def_nr + 1 < 0 away, arg\!
[cparser] / parsetest / cp_error045.c
1 // works with gcc 3.4.4 and icc 10.1
2 typedef void(*__cdecl PIMAGE_TLS_CALLBACK)();
3 typedef void(__cdecl* PIMAGE_TLS_CALLBACK2)();
4
5 // works with gcc 3.4.4
6 typedef void(__attribute__((__stdcall__)) *PIMAGE_TLS_CALLBACK3)();
7 typedef void(*__attribute__((__stdcall__)) PIMAGE_TLS_CALLBACK4)();
8
9 int main(void)
10 {
11         return 0;
12 }