mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-27 11:55:06 +00:00
Delete vax' (and
i386' and `hp300' etc.) namespace pollution.
Our one supported compiler always defines the double-underscore variant, so always use that. Noticed by Bruce Evans after a report by John Capo.
This commit is contained in:
parent
934051e5c5
commit
d2b0023cb3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3999
@ -41,27 +41,27 @@
|
||||
#ifndef _SETJMP_H_
|
||||
#define _SETJMP_H_
|
||||
|
||||
#if defined(hp300) || defined(__hp300__) || defined(luna68k) || defined(__luna68k__)
|
||||
#if defined(__hp300__) || defined(__luna68k__)
|
||||
#define _JBLEN 17
|
||||
#endif
|
||||
|
||||
#if defined(i386) || defined(__i386__)
|
||||
#if defined(__i386__)
|
||||
#define _JBLEN 8
|
||||
#endif
|
||||
|
||||
#if defined(mips) || defined(__mips__)
|
||||
#if defined(__mips__)
|
||||
#define _JBLEN 83
|
||||
#endif
|
||||
|
||||
#if defined(sparc) || defined(__sparc__)
|
||||
#if defined(__sparc__)
|
||||
#define _JBLEN 10
|
||||
#endif
|
||||
|
||||
#if defined(tahoe) || defined(__tahoe__)
|
||||
#if defined(__tahoe__)
|
||||
#define _JBLEN 10
|
||||
#endif
|
||||
|
||||
#if defined(vax) || defined(__vax__)
|
||||
#if defined(__vax__)
|
||||
#define _JBLEN 10
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user