summaryrefslogtreecommitdiff
path: root/bfd/bfdio.c
diff options
context:
space:
mode:
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