Avoid introducing new prefix '__JB' -- '_JB' is fine.
This commit is contained in:
parent
e20f6d6203
commit
4720afb463
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: setjmp.h,v 1.16 1999/01/14 09:05:46 castor Exp $ */
|
/* $NetBSD: setjmp.h,v 1.17 1999/01/15 03:43:56 castor Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1990, 1993
|
* Copyright (c) 1990, 1993
|
||||||
|
@ -47,16 +47,16 @@
|
||||||
|
|
||||||
#include <machine/setjmp.h>
|
#include <machine/setjmp.h>
|
||||||
|
|
||||||
#ifndef __JB_ATTRIBUTES
|
#ifndef _JB_ATTRIBUTES
|
||||||
#define __JB_ATTRIBUTES /**/
|
#define _JB_ATTRIBUTES /**/
|
||||||
#else
|
#else
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _ANSI_SOURCE
|
#ifndef _ANSI_SOURCE
|
||||||
typedef long sigjmp_buf[_JBLEN + 1] __JB_ATTRIBUTES;
|
typedef long sigjmp_buf[_JBLEN + 1] _JB_ATTRIBUTES;
|
||||||
#endif /* not ANSI */
|
#endif /* not ANSI */
|
||||||
|
|
||||||
typedef long jmp_buf[_JBLEN] __JB_ATTRIBUTES;
|
typedef long jmp_buf[_JBLEN] _JB_ATTRIBUTES;
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: setjmp.h,v 1.3 1999/01/14 18:45:45 castor Exp $ */
|
/* $NetBSD: setjmp.h,v 1.4 1999/01/15 03:43:56 castor Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* mips/setjmp.h: machine dependent setjmp-related information.
|
* mips/setjmp.h: machine dependent setjmp-related information.
|
||||||
|
@ -7,8 +7,6 @@
|
||||||
* struct sigcontext to restore it.
|
* struct sigcontext to restore it.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __JBLEN
|
#ifndef _JBLEN /* Size in longs of jmp_buf */
|
||||||
#include <machine/pubassym.h>
|
#include <machine/pubassym.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define _JBLEN __JBLEN /* Size in longs of jmp_buf */
|
|
||||||
|
|
Loading…
Reference in New Issue