blob: a9707dc2eb22f7c5f83750b55800091e76a1f837 [file] [log] [blame]
Chris Dearman645d0312014-02-05 18:51:43 -08001/* $OpenBSD: setjmp.h,v 1.2 2004/08/10 21:10:56 pefo Exp $ */
2
3/* Public domain */
4
5#ifndef _MIPS_SETJMP_H_
6#define _MIPS_SETJMP_H_
7
Duane Sand3a478632014-11-25 17:33:10 -08008#ifdef __LP64__
9#define _JBLEN 22 /* size, in 8-byte longs, of a mips64 jmp_buf */
10#else
11#define _JBLEN 29 /* size, in 4-byte longs, of a mips32 jmp_buf */
12#endif
Chris Dearman645d0312014-02-05 18:51:43 -080013
14#endif /* !_MIPS_SETJMP_H_ */