* bfd-in.h: enum boolean => enum bfd_boolean for SVR4. Gumby's
prediction is vindicated!
This commit is contained in:
parent
278bf2c0c3
commit
f7cfc4a6a9
1 changed files with 3 additions and 1 deletions
|
@ -61,7 +61,9 @@ typedef struct _bfd bfd;
|
||||||
and false on failure (unless they're a predicate). -- bfd.doc */
|
and false on failure (unless they're a predicate). -- bfd.doc */
|
||||||
/* I'm sure this is going to break something and someone is going to
|
/* I'm sure this is going to break something and someone is going to
|
||||||
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 */
|
||||||
|
typedef enum bfd_boolean {false, true} boolean;
|
||||||
|
|
||||||
/* Try to avoid breaking stuff */
|
/* Try to avoid breaking stuff */
|
||||||
typedef long int file_ptr;
|
typedef long int file_ptr;
|
||||||
|
|
Loading…
Reference in a new issue