aboutsummaryrefslogtreecommitdiff
path: root/bfd/bfd-in.h
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-10-04 02:49:06 +0000
committerJohn Gilmore <gnu@cygnus>1991-10-04 02:49:06 +0000
commitf004165ea50e6515128729bcbfe3a12db1e0a627 (patch)
treecb511b6bb8ee873e3aee04ae6bfa6b2287786b21 /bfd/bfd-in.h
parentb14f76edd1e62933e0c633f61390624443c3f509 (diff)
downloadfsf-binutils-gdb-f004165ea50e6515128729bcbfe3a12db1e0a627.zip
fsf-binutils-gdb-f004165ea50e6515128729bcbfe3a12db1e0a627.tar.gz
fsf-binutils-gdb-f004165ea50e6515128729bcbfe3a12db1e0a627.tar.bz2
* bfd-in.h: enum boolean => enum bfd_boolean for SVR4. Gumby's
prediction is vindicated! * bfd-in.h, libbfd-in.h, doc/Makefile, doc/tolibbfd, doc/intobfd: Remove refs to howto.c, since Steve forgot.
Diffstat (limited to 'bfd/bfd-in.h')
-rw-r--r--bfd/bfd-in.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h
index d674618..fbbecd4 100644
--- a/bfd/bfd-in.h
+++ b/bfd/bfd-in.h
@@ -52,7 +52,7 @@ here. */
# endif
#endif
-#define BFD_VERSION "1.15"
+#define BFD_VERSION "0.18"
/* forward declaration */
typedef struct _bfd bfd;
@@ -61,7 +61,9 @@ typedef struct _bfd bfd;
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
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 */
typedef long int file_ptr;
@@ -323,7 +325,6 @@ extern CONST short _bfd_host_big_endian;
/*:archures.c*/
-/*:howto.c*/
/*:reloc.c*/
/*:syms.c*/