mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
66d97267c7
This excludes all headers in /usr/include/dev because that directory is bonkers huge (18M). We can add these on an as-needed basis.
15 lines
342 B
C
Vendored
15 lines
342 B
C
Vendored
/* $OpenBSD: setjmp.h,v 1.4 2018/01/08 16:44:32 visa Exp $ */
|
|
|
|
/* Public domain */
|
|
|
|
#ifndef _MIPS64_SETJMP_H_
|
|
#define _MIPS64_SETJMP_H_
|
|
|
|
#define _JB_MASK (1 * REGSZ)
|
|
#define _JB_PC (2 * REGSZ)
|
|
#define _JB_REGS (3 * REGSZ)
|
|
#define _JB_FPREGS (37 * REGSZ)
|
|
|
|
#define _JBLEN 83 /* size, in longs, of a jmp_buf */
|
|
|
|
#endif /* !_MIPS64_SETJMP_H_ */ |