mirror of
https://github.com/ziglang/zig.git
synced 2026-01-07 14:03:26 +00:00
9 lines
196 B
Zig
9 lines
196 B
Zig
// export this function twice
|
|
pub export fn testFunc() callconv(.C) usize {
|
|
return @intFromPtr(&testFunc);
|
|
}
|
|
|
|
comptime {
|
|
@export(testFunc, .{ .name = "test_func", .linkage = .Strong });
|
|
}
|