diff options
author | Sean Eric Fagan <sef@cygnus> | 1991-09-19 22:28:00 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1991-09-19 22:28:00 +0000 |
commit | b1c86ef190810e341c32b12aeadeec0f55bfc732 (patch) | |
tree | 6f4e03c63f85a3c1f1798aa353777cc8650dc913 /bfd | |
parent | f24adda313333714038bec83180443ffb4726786 (diff) | |
download | gdb-b1c86ef190810e341c32b12aeadeec0f55bfc732.zip gdb-b1c86ef190810e341c32b12aeadeec0f55bfc732.tar.gz gdb-b1c86ef190810e341c32b12aeadeec0f55bfc732.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/bfd.c | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -21,14 +21,15 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* $Id$ */ /*proto* -@section typedef bfd +@section @code{typedef bfd} -Pointers to bfd structs are the cornerstone of any application using -@code{libbfd}. References though the BFD and to data in the BFD give the -entire BFD functionality. +A BFD is has type @code{bfd}; objects of this type are the cornerstone +of any application using @code{libbfd}. References though the BFD and +to data in the BFD give the entire BFD functionality. -Here is the BFD struct itself. This contains the major data about -the file, and contains pointers to the rest of the data. +Here is the struct used to define the type @code{bfd}. This contains +the major data about the file, and contains pointers to the rest of +the data. *+++ @@ -81,7 +82,7 @@ File modified time $ long mtime; -For output files, channel we locked (is this used?). +Reserved for an unimplemented file locking extension. $int ifd; @@ -218,7 +219,7 @@ bfd_error_vector_type bfd_error_vector = bfd_nonrepresentable_section }; -#if 1 || !defined(ANSI_LIBRARIES) && !defined(__STDC__) +#if !defined(ANSI_LIBRARIES) && !defined(__STDC__) || HOST_SYS==SUN4_SYS char * strerror (code) int code; |