Line 87... |
Line 87... |
force me to change it. */
|
force me to change it. */
|
/* typedef enum boolean {false, true} boolean; */
|
/* typedef enum boolean {false, true} boolean; */
|
/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
|
/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
|
/* It gets worse if the host also defines a true/false enum... -sts */
|
/* It gets worse if the host also defines a true/false enum... -sts */
|
/* And even worse if your compiler has built-in boolean types... -law */
|
/* And even worse if your compiler has built-in boolean types... -law */
|
#if defined (__GNUG__) && (__GNUC_MINOR__ > 5)
|
/* And even worse if your compiler provides a stdbool.h that conflicts
|
|
with these definitions... gcc 2.95 and later do. -drow */
|
|
#if defined (__GNUG__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6))
|
#define TRUE_FALSE_ALREADY_DEFINED
|
#define TRUE_FALSE_ALREADY_DEFINED
|
|
#else
|
|
#if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95))
|
|
#include <stdbool.h>
|
|
#define TRUE_FALSE_ALREADY_DEFINED
|
|
#endif
|
#endif
|
#endif
|
#ifdef MPW
|
#ifdef MPW
|
/* Pre-emptive strike - get the file with the enum. */
|
/* Pre-emptive strike - get the file with the enum. */
|
#include <Types.h>
|
#include <Types.h>
|
#define TRUE_FALSE_ALREADY_DEFINED
|
#define TRUE_FALSE_ALREADY_DEFINED
|
Line 1323... |
Line 1330... |
#define bfd_mach_i960_ca 6
|
#define bfd_mach_i960_ca 6
|
#define bfd_mach_i960_jx 7
|
#define bfd_mach_i960_jx 7
|
#define bfd_mach_i960_hx 8
|
#define bfd_mach_i960_hx 8
|
|
|
bfd_arch_or32, /* OpenRISC 32 */
|
bfd_arch_or32, /* OpenRISC 32 */
|
bfd_arch_or16, /* OpenRISC 16 */
|
|
|
|
bfd_arch_a29k, /* AMD 29000 */
|
bfd_arch_a29k, /* AMD 29000 */
|
bfd_arch_sparc, /* SPARC */
|
bfd_arch_sparc, /* SPARC */
|
#define bfd_mach_sparc 1
|
#define bfd_mach_sparc 1
|
/* The difference between v8plus and v9 is that v9 is a true 64 bit env. */
|
/* The difference between v8plus and v9 is that v9 is a true 64 bit env. */
|