diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-29 19:27:25 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2004-02-29 19:27:25 +0000 |
commit | 06bbcaeb9d33fce156543e2d84b1df4a0a9e1127 (patch) | |
tree | 8614ca58169c994e07adc995d206e8434b020c5d /gnu/lib/libf2c/libI77/ftell_.c | |
parent | 4a95829907bd98f42503d9e6f91af8df4c9313ab (diff) |
Import of libf2c from gcc3.3.2
Diffstat (limited to 'gnu/lib/libf2c/libI77/ftell_.c')
-rw-r--r-- | gnu/lib/libf2c/libI77/ftell_.c | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/gnu/lib/libf2c/libI77/ftell_.c b/gnu/lib/libf2c/libI77/ftell_.c new file mode 100644 index 00000000000..250a0cc9bcd --- /dev/null +++ b/gnu/lib/libf2c/libI77/ftell_.c @@ -0,0 +1,47 @@ +#include "config.h" +#include "f2c.h" +#include "fio.h" + + static FILE * +#ifdef KR_headers +unit_chk(Unit, who) integer Unit; char *who; +#else +unit_chk(integer Unit, char *who) +#endif +{ + if (Unit >= MXUNIT || Unit < 0) + f__fatal(101, who); + return f__units[Unit].ufd; + } + + integer +#ifdef KR_headers +G77_ftell_0 (Unit) integer *Unit; +#else +G77_ftell_0 (integer *Unit) +#endif +{ + FILE *f; + return (f = unit_chk(*Unit, "ftell")) ? (integer) FTELL(f) : -1L; + } + + integer +#ifdef KR_headers +G77_fseek_0 (Unit, offset, xwhence) integer *Unit, *offset, *xwhence; +#else +G77_fseek_0 (integer *Unit, integer *offset, integer *xwhence) +#endif +{ + FILE *f; + int w = (int)*xwhence; +#ifdef SEEK_SET + static int wohin[3] = { SEEK_SET, SEEK_CUR, SEEK_END }; +#endif + if (w < 0 || w > 2) + w = 0; +#ifdef SEEK_SET + w = wohin[w]; +#endif + return !(f = unit_chk(*Unit, "fseek")) + || FSEEK(f, (off_t) *offset, w) ? 1 : 0; + } |