setjmp.h revision 1.6
11.6Ssimonb/*	$NetBSD: setjmp.h,v 1.6 1999/04/24 08:10:36 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.1Scgd
101.5Scastor#if !defined(_MIPS_BSD_API) || _MIPS_BSD_API == _MIPS_BSD_API_LP32
111.5Scastor#define _JBLEN 87		/* XXX Naively 84; 87 for compatibility */
121.5Scastor#else
131.5Scastor#define _JBLEN	120
141.3Scastor#endif
15