summaryrefslogtreecommitdiff
path: root/bfd/bfdio.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2005-11-03 16:06:11 +0000
committerDaniel Jacobowitz <dan@debian.org>2005-11-03 16:06:11 +0000
commit0b8676a986f13f113896448d217e71bce8f5bea0 (patch)
tree4910c9a7fcd52950ec6d961963a9c01006e1c44a /bfd/bfdio.c
parent953326ad789e331860026a315f5e53135e43fc64 (diff)
downloadbinutils-redhat-0b8676a986f13f113896448d217e71bce8f5bea0.tar.gz
* configure.in: Check for fopen64.
* libbfd-in.h (real_fopen): New prototype. * configure, config.in, libbfd.h: Regenerated. * bfdio.c (real_fopen): New function. * opncls.c (bfd_fopen, bfd_fill_in_gnu_debuglink_section): Use it. * cache.c (bfd_open_file): Likewise.
Diffstat (limited to 'bfd/bfdio.c')
-rw-r--r--bfd/bfdio.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/bfd/bfdio.c b/bfd/bfdio.c
index 5c3774adfd..22ea886b5c 100644
--- a/bfd/bfdio.c
+++ b/bfd/bfdio.c
@@ -63,6 +63,16 @@ real_fseek (FILE *file, file_ptr offset, int whence)
#endif
}
+FILE *
+real_fopen (const char *filename, const char *modes)
+{
+#if defined (HAVE_FOPEN64)
+ return fopen64 (filename, modes);
+#else
+ return fopen (filename, modes);
+#endif
+}
+
/*
INTERNAL_DEFINITION
struct bfd_iovec