mirror of
https://github.com/ziglang/zig.git
synced 2025-12-31 02:23:22 +00:00
9 lines
194 B
Zig
9 lines
194 B
Zig
// export this function twice
|
|
pub export fn testFunc() callconv(.C) usize {
|
|
return @ptrToInt(&testFunc);
|
|
}
|
|
|
|
comptime {
|
|
@export(testFunc, .{ .name = "test_func", .linkage = .Strong });
|
|
}
|