diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-10-21 14:52:35 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-10-21 14:52:35 +0000 |
commit | a1ea730d96bcc07b3d616a92ace3927de8290cdd (patch) | |
tree | 725e0b5ba356e7a24c6a9304ad5403ca773cb006 /intrpvar.h | |
parent | 7fcdafbdb0bffcc321d3a9c54e5d13442d621313 (diff) | |
download | perl-a1ea730d96bcc07b3d616a92ace3927de8290cdd.tar.gz |
PerlIO layer table as PL_perlio (per-interpreter)
p4raw-id: //depot/perlio@12544
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index 681fb6d3c7..b6b4f07388 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -493,6 +493,12 @@ PERLVAR(Isavebegin, bool) /* save BEGINs for compiler */ PERLVAR(Icustom_op_names, HV*) /* Names of user defined ops */ PERLVAR(Icustom_op_descs, HV*) /* Descriptions of user defined ops */ +#ifdef PERLIO_LAYERS +PERLVARI(Iperlio, PerlIO *,NULL) +#endif + /* New variables must be added to the very end for binary compatibility. * XSUB.h provides wrapper functions via perlapi.h that make this * irrelevant, but not all code may be expected to #include XSUB.h. */ + + |