srctree

AdriĆ  Arrufat parent b9cca3b6 17bad9f8
Fix emscripten exports

inlinesplit
lib/std/os/emscripten.zig added: 3, removed: 3, total 0
@@ -17,8 +17,8 @@ comptime {
if (builtin.os.tag == .emscripten) {
if (builtin.mode == .Debug or builtin.mode == .ReleaseSafe) {
// Emscripten does not provide these symbols, so we must export our own
@export(__stack_chk_guard, .{ .name = "__stack_chk_guard", .linkage = .Strong });
@export(__stack_chk_fail, .{ .name = "__stack_chk_fail", .linkage = .Strong });
@export(__stack_chk_guard, .{ .name = "__stack_chk_guard", .linkage = .strong });
@export(__stack_chk_fail, .{ .name = "__stack_chk_fail", .linkage = .strong });
}
}
}