remove zig import we don't need in 0.9.1

This commit is contained in:
Folkert 2022-04-30 23:43:38 +02:00
parent b7b86c0cde
commit 84f0839de9
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -174,7 +174,6 @@ comptime {
// setjmp/longjmp. LLVM is unable to generate code for longjmp on AArch64 (https://github.com/rtfeldman/roc/issues/2965),
// so instead we ask Zig to please provide implementations for us, which is does
// (seemingly via musl).
pub usingnamespace @import("std").c.builtins;
pub extern fn setjmp([*c]c_int) c_int;
pub extern fn longjmp([*c]c_int, c_int) noreturn;
pub extern fn _setjmp([*c]c_int) c_int;