mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-05 20:48:04 +00:00
12 lines
212 B
Odin
12 lines
212 B
Odin
#+build windows, linux, darwin, netbsd, openbsd, freebsd
|
|
package posix
|
|
|
|
import "core:c/libc"
|
|
|
|
// setjmp.h - stack environment declarations
|
|
|
|
jmp_buf :: libc.jmp_buf
|
|
|
|
longjmp :: libc.longjmp
|
|
setjmp :: libc.setjmp
|