diff options
author | Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de> | 2004-05-18 18:06:09 +0200 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2004-05-18 18:06:09 +0200 |
commit | 81f4be3ce1fd9f08d811cf61413e374e0dc43166 (patch) | |
tree | 23c4c98b07e24eaf1541c8090b2f9c1c5e2f219e /libgfortran/libgfortran.h | |
parent | 7d72d96efe1f576cbeea5e6c59724a8d47f476b9 (diff) | |
download | gcc-81f4be3ce1fd9f08d811cf61413e374e0dc43166.tar.gz |
re PR libfortran/15235 (libgfortran doesn't build on Solaris 10)
PR fortran/15235
* gfortran.h (offset_t): Rename to ...
(gfc_offset): ... this.
* io/backspace.c (formatted_backspace, unformatted_backspace),
io/io.h (stream, gfc_unit, global_t, file_length, file_position),
transfer.c (us_read, us_write, next_record_r, next_record_w),
io/unit.c (init_units), unix.c (unix_stream, fd_alloc,
fd_alloc_r_at, fd_alloc_w_at, fd_seek, mmap_alloc,
mmap_alloc_r_at, mmap_alloc_w_at, mmap_seek, mem_alloc_r_at,
mem_alloc_w_at, mem_seek, file_length, file_position): Replace all
occurences of offset_t by gfc_offset.
From-SVN: r81994
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r-- | libgfortran/libgfortran.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index 112fd075dcf..6234e25cb72 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -50,7 +50,7 @@ Boston, MA 02111-1307, USA. */ #if HAVE_SYS_TYPES_H #include <sys/types.h> #endif -typedef off_t offset_t; +typedef off_t gfc_offset; #ifndef NULL #define NULL (void *) 0 |