* elf32-bfin.c (bfd_const_reloc, bfd_oper_reloc, bfin_push_reloc,
[deliverable/binutils-gdb.git] / bfd / bfdio.c
index 5c3774adfd7d73b7328c7295437d419cda16716e..22ea886b5cb030881a3a7b956b8b6abe6372c84f 100644 (file)
@@ -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
This page took 0.024355 seconds and 4 git commands to generate.