diff options
author | Tom Rix <trix@redhat.com> | 2001-05-24 20:50:50 +0000 |
---|---|---|
committer | Tom Rix <trix@redhat.com> | 2001-05-24 20:50:50 +0000 |
commit | beb1bf64d083b906a76aa038c5cc5328f0c10e8d (patch) | |
tree | 600047bdacc5eaace49a866b8ccca725f74582c5 /bfd/libbfd.c | |
parent | 3dd657b1d099808f55beac3272b3d41d6048472c (diff) | |
download | gdb-beb1bf64d083b906a76aa038c5cc5328f0c10e8d.zip gdb-beb1bf64d083b906a76aa038c5cc5328f0c10e8d.tar.gz gdb-beb1bf64d083b906a76aa038c5cc5328f0c10e8d.tar.bz2 |
Support for xcoff64
Diffstat (limited to 'bfd/libbfd.c')
-rw-r--r-- | bfd/libbfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/libbfd.c b/bfd/libbfd.c index 0df7e38..695df8d 100644 --- a/bfd/libbfd.c +++ b/bfd/libbfd.c @@ -232,6 +232,7 @@ real_read (where, a,b, file) if (a == 0 || b == 0) return 0; + #if defined (__VAX) && defined (VMS) /* Apparently fread on Vax VMS does not keep the record length information. */ @@ -747,7 +748,6 @@ bfd_seek (abfd, position, direction) file_position += abfd->origin; result = fseek (f, file_position, direction); - if (result != 0) { int hold_errno = errno; |