summaryrefslogtreecommitdiff
path: root/perliol.h
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>2002-06-16 16:38:59 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>2002-06-16 16:38:59 +0000
commit4b069b44f3c785593c10e7aca80c893a2f210b9d (patch)
tree924823512e83d345144d8cc17e8fc54f0c022e7f /perliol.h
parentb0ce607a6dc86b7489b2320651569a94b7a2cea8 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/perliol.h b/perliol.h
index 250a01529d..124589b493 100644
--- a/perliol.h
+++ b/perliol.h
@@ -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 */
};
/*--------------------------------------------------------------------------------------*/