diff options
author | Toon Moene <toon@moene.indiv.nluug.nl> | 2001-07-10 22:39:40 +0200 |
---|---|---|
committer | Toon Moene <toon@gcc.gnu.org> | 2001-07-10 20:39:40 +0000 |
commit | 64135693a576eecf63ce6371359fada79f273230 (patch) | |
tree | 89eb659462853318608bb3507fe34fbbc068ae65 /libf2c/libI77/fio.h | |
parent | d7624dc011bb4e15bbd0e3f6b3588410b3179488 (diff) | |
download | gcc-64135693a576eecf63ce6371359fada79f273230.zip gcc-64135693a576eecf63ce6371359fada79f273230.tar.gz gcc-64135693a576eecf63ce6371359fada79f273230.tar.bz2 |
fio.h: Revert type of url from off_t to int.
2001-07-10 Toon Moene <toon@moene.indiv.nluug.nl>
* libI77/fio.h: Revert type of url from off_t to int.
* libI77/dfe.c (c_dfe): Cast offset expression in FSEEK to off_t.
* libI77/due.c (c_due): Ditto. (e_rdue): Ditto.
* libI77/ftell_.c (G77_ftell_0): Cast result of FTELL to integer.
(G77_fseek_0): Cast offset argument of FSEEK to off_t.
From-SVN: r43910
Diffstat (limited to 'libf2c/libI77/fio.h')
-rw-r--r-- | libf2c/libI77/fio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libf2c/libI77/fio.h b/libf2c/libI77/fio.h index aaeb68d..8c6d274 100644 --- a/libf2c/libI77/fio.h +++ b/libf2c/libI77/fio.h @@ -45,7 +45,7 @@ typedef struct long uinode; int udev; #endif - off_t url; /*0=sequential*/ + int url; /*0=sequential*/ flag useek; /*true=can backspace, use dir, ...*/ flag ufmt; flag urw; /* (1 for can read) | (2 for can write) */ |