blob: a9707dc2eb22f7c5f83750b55800091e76a1f837 [file] [log] [blame]
David 'Digit' Turnerc1b44ec2012-10-17 19:10:11 +02001/* $OpenBSD: setjmp.h,v 1.2 2004/08/10 21:10:56 pefo Exp $ */
Raghu Gandham405b8022012-07-25 18:16:42 -07002
David 'Digit' Turnerc1b44ec2012-10-17 19:10:11 +02003/* Public domain */
Raghu Gandham405b8022012-07-25 18:16:42 -07004
David 'Digit' Turnerc1b44ec2012-10-17 19:10:11 +02005#ifndef _MIPS_SETJMP_H_
6#define _MIPS_SETJMP_H_
Raghu Gandham405b8022012-07-25 18:16:42 -07007
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
Raghu Gandham405b8022012-07-25 18:16:42 -070013
David 'Digit' Turnerc1b44ec2012-10-17 19:10:11 +020014#endif /* !_MIPS_SETJMP_H_ */