setjmp.h revision 1.5
11.5Scastor/*	$NetBSD: setjmp.h,v 1.5 1999/01/31 00:55:41 castor Exp $	*/
21.1Scgd
31.1Scgd/*
41.3Scastor * mips/setjmp.h: machine dependent setjmp-related information.
51.3Scastor *
61.3Scastor * 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