diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-24 05:51:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-24 05:51:53 +0000 |
commit | c78749f2c1dc7ab348159cae5136d33e33ca5c90 (patch) | |
tree | be5069dd42f2d820c341e32303553e0f73437248 /iperlsys.h | |
parent | 606974b21cdb98866563c221c06d21c01db0cf0d (diff) | |
download | perl-c78749f2c1dc7ab348159cae5136d33e33ca5c90.tar.gz |
ansify perlio.c, fix PerlIO-ish typos
p4raw-id: //depot/perl@3021
Diffstat (limited to 'iperlsys.h')
-rw-r--r-- | iperlsys.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/iperlsys.h b/iperlsys.h index cfdc39f9de..67ef90aec1 100644 --- a/iperlsys.h +++ b/iperlsys.h @@ -114,7 +114,7 @@ public: virtual int Printf(PerlIO*, int &err, const char *,...) = 0; virtual int Vprintf(PerlIO*, int &err, const char *, va_list) = 0; virtual long Tell(PerlIO*, int &err) = 0; - virtual int Seek(PerlIO*, off_t, int, int &err) = 0; + virtual int Seek(PerlIO*, Off_t, int, int &err) = 0; virtual void Rewind(PerlIO*, int &err) = 0; virtual PerlIO * Tmpfile(int &err) = 0; virtual int Getpos(PerlIO*, Fpos_t *, int &err) = 0; @@ -322,10 +322,10 @@ extern int PerlIO_sprintf _((char *, int, const char *,...)) extern int PerlIO_vprintf _((PerlIO *, const char *, va_list)); #endif #ifndef PerlIO_tell -extern long PerlIO_tell _((PerlIO *)); +extern Off_t PerlIO_tell _((PerlIO *)); #endif #ifndef PerlIO_seek -extern int PerlIO_seek _((PerlIO *,off_t,int)); +extern int PerlIO_seek _((PerlIO *, Off_t, int)); #endif #ifndef PerlIO_rewind extern void PerlIO_rewind _((PerlIO *)); |