1 extern void __attribute__((cdecl)) c1(void);
2 typedef void (__attribute__((cdecl)) *c2
)(void);
5 extern void __attribute__((__cdecl__
)) c_1(void);
6 typedef void (__attribute__((__cdecl__
)) *c_2
)(void);
9 extern void __attribute__((stdcall)) s1(void);
10 typedef void (__attribute__((stdcall)) *s2
)(void);
13 extern void __attribute__((__stdcall__
)) s_1(void);
14 typedef void (__attribute__((__stdcall__
)) *s_2
)(void);
17 extern void __attribute__((fastcall
)) f1(void);
18 typedef void (__attribute__((fastcall
)) *f2
)(void);
21 extern void __attribute__((__fastcall__
)) f_1(void);
22 typedef void (__attribute__((__fastcall__
)) *f_2
)(void);
25 * check-name: Calling convention attributes