setjmp.h revision 1.7
11.7Ssimonb/* $NetBSD: setjmp.h,v 1.7 2002/03/05 14:17:16 simonb Exp $ */ 21.1Scgd 31.1Scgd/* 41.3Scastor * mips/setjmp.h: machine dependent setjmp-related information. 51.3Scastor * 61.6Ssimonb * For the size of this, refer to <machine/signal.h> as this uses the 71.3Scastor * struct sigcontext to restore it. 81.1Scgd */ 91.7Ssimonb 101.7Ssimonb#include <machine/cdefs.h> /* for API selection */ 111.1Scgd 121.5Scastor#if !defined(_MIPS_BSD_API) || _MIPS_BSD_API == _MIPS_BSD_API_LP32 131.5Scastor#define _JBLEN 87 /* XXX Naively 84; 87 for compatibility */ 141.5Scastor#else 151.5Scastor#define _JBLEN 120 161.3Scastor#endif 17