* elf32-m32r.c (m32r_elf_sweep_hook): Fix an illegal duplicate check.
[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.022849 seconds and 4 git commands to generate.