diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-06-16 16:38:59 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-06-16 16:38:59 +0000 |
commit | 4b069b44f3c785593c10e7aca80c893a2f210b9d (patch) | |
tree | 924823512e83d345144d8cc17e8fc54f0c022e7f /perliol.h | |
parent | b0ce607a6dc86b7489b2320651569a94b7a2cea8 (diff) | |
download | perl-4b069b44f3c785593c10e7aca80c893a2f210b9d.tar.gz |
Last minute tinkering with PerlIO abstraction API.
- PerlIO_importFILE and PerlIO_exportFILE now documented as taking
const char *mode.
- Other 'flags' field changed to U32
- Discouraging words written about ":raw".
p4raw-id: //depot/perlio@17258
Diffstat (limited to 'perliol.h')
-rw-r--r-- | perliol.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ struct _PerlIO_funcs { struct _PerlIO { PerlIOl *next; /* Lower layer */ PerlIO_funcs *tab; /* Functions for this layer */ - IV flags; /* Various flags for state */ + U32 flags; /* Various flags for state */ }; /*--------------------------------------------------------------------------------------*/ |