mirror of
https://github.com/ziglang/zig.git
synced 2025-12-24 15:13:08 +00:00
10 lines
196 B
C
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;
|