diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-02-11 23:23:20 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-02-11 23:23:20 +0000 |
commit | 7c1927339f8310bab476aaa4e74e20dbf1cd3deb (patch) | |
tree | 555ca47d80702ec8ffb6e7892410ba7baa3d4035 /bfd/bfd-in.h | |
parent | 63338fd920b3e8eaad113e0047eff7caaf14f67c (diff) | |
download | gdb-7c1927339f8310bab476aaa4e74e20dbf1cd3deb.zip gdb-7c1927339f8310bab476aaa4e74e20dbf1cd3deb.tar.gz gdb-7c1927339f8310bab476aaa4e74e20dbf1cd3deb.tar.bz2 |
2004-02-11 Andrew Cagney <cagney@redhat.com>
* bfd-in.h: Update copyright.
(bfd_tell): Change return type to file_ptr.
* bfd-in2.h: Re-generate.
* cache.c: Update copyright.
(bfd_cache_lookup_worker): Use real_fseek, do not cast offset
parameter.
(close_one): Use real_ftell.
* bfdio.c: Update copyright.
(real_ftell, real_fseek): New functions.
(bfd_tell): Use real_fseek and real_ftell, change return type to
file_ptr.
(bfd_seek): Use real_ftell and real_fseek, change type of
file_position to a file_ptr.
* libbfd-in.h: Update copyright.
(real_ftell, real_fseek): Declare.
* libbfd.h: Re-generate.
Diffstat (limited to 'bfd/bfd-in.h')
-rw-r--r-- | bfd/bfd-in.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index ccfef1e..cf75f63 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -1,7 +1,7 @@ /* Main header file for the bfd library -- portable access to object files. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. Contributed by Cygnus Support. @@ -456,7 +456,7 @@ extern void bfd_hash_traverse extern bfd_size_type bfd_bread (void *, bfd_size_type, bfd *); extern bfd_size_type bfd_bwrite (const void *, bfd_size_type, bfd *); extern int bfd_seek (bfd *, file_ptr, int); -extern ufile_ptr bfd_tell (bfd *); +extern file_ptr bfd_tell (bfd *); extern int bfd_flush (bfd *); extern int bfd_stat (bfd *, struct stat *); |