* elf32-m32r.c (m32r_elf_sweep_hook): Fix an illegal duplicate check.
[deliverable/binutils-gdb.git] / bfd / bfdio.c
index 6bb3aa5f28ef60e54c69ca09a1cf20cd622c55a8..22ea886b5cb030881a3a7b956b8b6abe6372c84f 100644 (file)
@@ -20,7 +20,7 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02110-1301, USA.  */
+Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
 
 #include "sysdep.h"
 
@@ -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.024727 seconds and 4 git commands to generate.