Files
zig/test/cases/translate_c/macro_calling_convention.c
2025-05-07 16:15:51 +03:00

10 lines
196 B
C

#define SYSV_ABI __attribute__((sysv_abi))
void SYSV_ABI foo(void);
// translate-c
// c_frontend=clang
// target=x86_64-windows
//
// pub extern fn foo() callconv(.{ .x86_64_sysv = .{} }) void;