diff options
author | Artur Bergman <sky@nanisky.com> | 2001-08-27 18:21:27 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2001-08-27 18:21:27 +0000 |
commit | 438c221d2a8e6fa132b664b70062215bf9c6ef42 (patch) | |
tree | f6bbff6e0ad787fe5163fea9bd63dd33d8e2f49d /embedvar.h | |
parent | 2ac1ef3d129ac2446fc0d2ea08ecbbd4bd583ff4 (diff) | |
download | perl-438c221d2a8e6fa132b664b70062215bf9c6ef42.tar.gz |
Regen headers
p4raw-id: //depot/perl@11760
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index 3af647c4b2..9198d2e670 100644 --- a/embedvar.h +++ b/embedvar.h @@ -223,6 +223,8 @@ #define PL_curcopdb (PERL_GET_INTERP->Icurcopdb) #define PL_curstname (PERL_GET_INTERP->Icurstname) #define PL_curthr (PERL_GET_INTERP->Icurthr) +#define PL_custom_op_descs (PERL_GET_INTERP->Icustom_op_descs) +#define PL_custom_op_names (PERL_GET_INTERP->Icustom_op_names) #define PL_dbargs (PERL_GET_INTERP->Idbargs) #define PL_debstash (PERL_GET_INTERP->Idebstash) #define PL_debug (PERL_GET_INTERP->Idebug) @@ -509,6 +511,8 @@ #define PL_curcopdb (vTHX->Icurcopdb) #define PL_curstname (vTHX->Icurstname) #define PL_curthr (vTHX->Icurthr) +#define PL_custom_op_descs (vTHX->Icustom_op_descs) +#define PL_custom_op_names (vTHX->Icustom_op_names) #define PL_dbargs (vTHX->Idbargs) #define PL_debstash (vTHX->Idebstash) #define PL_debug (vTHX->Idebug) @@ -934,6 +938,8 @@ #define PL_curcopdb (aTHXo->interp.Icurcopdb) #define PL_curstname (aTHXo->interp.Icurstname) #define PL_curthr (aTHXo->interp.Icurthr) +#define PL_custom_op_descs (aTHXo->interp.Icustom_op_descs) +#define PL_custom_op_names (aTHXo->interp.Icustom_op_names) #define PL_dbargs (aTHXo->interp.Idbargs) #define PL_debstash (aTHXo->interp.Idebstash) #define PL_debug (aTHXo->interp.Idebug) @@ -1221,6 +1227,8 @@ #define PL_Icurcopdb PL_curcopdb #define PL_Icurstname PL_curstname #define PL_Icurthr PL_curthr +#define PL_Icustom_op_descs PL_custom_op_descs +#define PL_Icustom_op_names PL_custom_op_names #define PL_Idbargs PL_dbargs #define PL_Idebstash PL_debstash #define PL_Idebug PL_debug |