1N/A/*
1N/A * perlapi.h
1N/A *
1N/A * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, by Larry Wall and others
1N/A *
1N/A * You may distribute under the terms of either the GNU General Public
1N/A * License or the Artistic License, as specified in the README file.
1N/A *
1N/A * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
1N/A * This file is built by embed.pl from data in embed.fnc, embed.pl,
1N/A * pp.sym, intrpvar.h, perlvars.h and thrdvar.h.
1N/A * Any changes made here will be lost!
1N/A *
1N/A * Edit those files and run 'make regen_headers' to effect changes.
1N/A */
1N/A
1N/A/* declare accessor functions for Perl variables */
1N/A#ifndef __perlapi_h__
1N/A#define __perlapi_h__
1N/A
1N/A#if defined (MULTIPLICITY)
1N/A
1N/ASTART_EXTERN_C
1N/A
1N/A#undef PERLVAR
1N/A#undef PERLVARA
1N/A#undef PERLVARI
1N/A#undef PERLVARIC
1N/A#define PERLVAR(v,t) EXTERN_C t* Perl_##v##_ptr(pTHX);
1N/A#define PERLVARA(v,n,t) typedef t PL_##v##_t[n]; \
1N/A EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
1N/A#define PERLVARI(v,t,i) PERLVAR(v,t)
1N/A#define PERLVARIC(v,t,i) PERLVAR(v, const t)
1N/A
1N/A#include "thrdvar.h"
1N/A#include "intrpvar.h"
1N/A#include "perlvars.h"
1N/A
1N/A#undef PERLVAR
1N/A#undef PERLVARA
1N/A#undef PERLVARI
1N/A#undef PERLVARIC
1N/A
1N/AEND_EXTERN_C
1N/A
1N/A#if defined(PERL_CORE)
1N/A
1N/A/* accessor functions for Perl variables (provide binary compatibility) */
1N/A
1N/A/* these need to be mentioned here, or most linkers won't put them in
1N/A the perl executable */
1N/A
1N/A#ifndef PERL_NO_FORCE_LINK
1N/A
1N/ASTART_EXTERN_C
1N/A
1N/A#ifndef DOINIT
1N/AEXT void *PL_force_link_funcs[];
1N/A#else
1N/AEXT void *PL_force_link_funcs[] = {
1N/A#undef PERLVAR
1N/A#undef PERLVARA
1N/A#undef PERLVARI
1N/A#undef PERLVARIC
1N/A#define PERLVAR(v,t) (void*)Perl_##v##_ptr,
1N/A#define PERLVARA(v,n,t) PERLVAR(v,t)
1N/A#define PERLVARI(v,t,i) PERLVAR(v,t)
1N/A#define PERLVARIC(v,t,i) PERLVAR(v,t)
1N/A
1N/A#include "thrdvar.h"
1N/A#include "intrpvar.h"
1N/A#include "perlvars.h"
1N/A
1N/A#undef PERLVAR
1N/A#undef PERLVARA
1N/A#undef PERLVARI
1N/A#undef PERLVARIC
1N/A};
1N/A#endif /* DOINIT */
1N/A
1N/AEND_EXTERN_C
1N/A
1N/A#endif /* PERL_NO_FORCE_LINK */
1N/A
1N/A#else /* !PERL_CORE */
1N/A
1N/A#undef PL_Argv
1N/A#define PL_Argv (*Perl_IArgv_ptr(aTHX))
1N/A#undef PL_BINCOMPAT0
1N/A#define PL_BINCOMPAT0 (*Perl_IBINCOMPAT0_ptr(aTHX))
1N/A#undef PL_Cmd
1N/A#define PL_Cmd (*Perl_ICmd_ptr(aTHX))
1N/A#undef PL_DBcv
1N/A#define PL_DBcv (*Perl_IDBcv_ptr(aTHX))
1N/A#undef PL_DBgv
1N/A#define PL_DBgv (*Perl_IDBgv_ptr(aTHX))
1N/A#undef PL_DBline
1N/A#define PL_DBline (*Perl_IDBline_ptr(aTHX))
1N/A#undef PL_DBsignal
1N/A#define PL_DBsignal (*Perl_IDBsignal_ptr(aTHX))
1N/A#undef PL_DBsingle
1N/A#define PL_DBsingle (*Perl_IDBsingle_ptr(aTHX))
1N/A#undef PL_DBsub
1N/A#define PL_DBsub (*Perl_IDBsub_ptr(aTHX))
1N/A#undef PL_DBtrace
1N/A#define PL_DBtrace (*Perl_IDBtrace_ptr(aTHX))
1N/A#undef PL_Dir
1N/A#define PL_Dir (*Perl_IDir_ptr(aTHX))
1N/A#undef PL_Env
1N/A#define PL_Env (*Perl_IEnv_ptr(aTHX))
1N/A#undef PL_LIO
1N/A#define PL_LIO (*Perl_ILIO_ptr(aTHX))
1N/A#undef PL_Mem
1N/A#define PL_Mem (*Perl_IMem_ptr(aTHX))
1N/A#undef PL_MemParse
1N/A#define PL_MemParse (*Perl_IMemParse_ptr(aTHX))
1N/A#undef PL_MemShared
1N/A#define PL_MemShared (*Perl_IMemShared_ptr(aTHX))
1N/A#undef PL_OpPtr
1N/A#define PL_OpPtr (*Perl_IOpPtr_ptr(aTHX))
1N/A#undef PL_OpSlab
1N/A#define PL_OpSlab (*Perl_IOpSlab_ptr(aTHX))
1N/A#undef PL_OpSpace
1N/A#define PL_OpSpace (*Perl_IOpSpace_ptr(aTHX))
1N/A#undef PL_Proc
1N/A#define PL_Proc (*Perl_IProc_ptr(aTHX))
1N/A#undef PL_Sock
1N/A#define PL_Sock (*Perl_ISock_ptr(aTHX))
1N/A#undef PL_StdIO
1N/A#define PL_StdIO (*Perl_IStdIO_ptr(aTHX))
1N/A#undef PL_amagic_generation
1N/A#define PL_amagic_generation (*Perl_Iamagic_generation_ptr(aTHX))
1N/A#undef PL_an
1N/A#define PL_an (*Perl_Ian_ptr(aTHX))
1N/A#undef PL_argvgv
1N/A#define PL_argvgv (*Perl_Iargvgv_ptr(aTHX))
1N/A#undef PL_argvout_stack
1N/A#define PL_argvout_stack (*Perl_Iargvout_stack_ptr(aTHX))
1N/A#undef PL_argvoutgv
1N/A#define PL_argvoutgv (*Perl_Iargvoutgv_ptr(aTHX))
1N/A#undef PL_basetime
1N/A#define PL_basetime (*Perl_Ibasetime_ptr(aTHX))
1N/A#undef PL_beginav
1N/A#define PL_beginav (*Perl_Ibeginav_ptr(aTHX))
1N/A#undef PL_beginav_save
1N/A#define PL_beginav_save (*Perl_Ibeginav_save_ptr(aTHX))
1N/A#undef PL_bitcount
1N/A#define PL_bitcount (*Perl_Ibitcount_ptr(aTHX))
1N/A#undef PL_bufend
1N/A#define PL_bufend (*Perl_Ibufend_ptr(aTHX))
1N/A#undef PL_bufptr
1N/A#define PL_bufptr (*Perl_Ibufptr_ptr(aTHX))
1N/A#undef PL_checkav
1N/A#define PL_checkav (*Perl_Icheckav_ptr(aTHX))
1N/A#undef PL_checkav_save
1N/A#define PL_checkav_save (*Perl_Icheckav_save_ptr(aTHX))
1N/A#undef PL_clocktick
1N/A#define PL_clocktick (*Perl_Iclocktick_ptr(aTHX))
1N/A#undef PL_collation_ix
1N/A#define PL_collation_ix (*Perl_Icollation_ix_ptr(aTHX))
1N/A#undef PL_collation_name
1N/A#define PL_collation_name (*Perl_Icollation_name_ptr(aTHX))
1N/A#undef PL_collation_standard
1N/A#define PL_collation_standard (*Perl_Icollation_standard_ptr(aTHX))
1N/A#undef PL_collxfrm_base
1N/A#define PL_collxfrm_base (*Perl_Icollxfrm_base_ptr(aTHX))
1N/A#undef PL_collxfrm_mult
1N/A#define PL_collxfrm_mult (*Perl_Icollxfrm_mult_ptr(aTHX))
1N/A#undef PL_compcv
1N/A#define PL_compcv (*Perl_Icompcv_ptr(aTHX))
1N/A#undef PL_compiling
1N/A#define PL_compiling (*Perl_Icompiling_ptr(aTHX))
1N/A#undef PL_comppad_name
1N/A#define PL_comppad_name (*Perl_Icomppad_name_ptr(aTHX))
1N/A#undef PL_comppad_name_fill
1N/A#define PL_comppad_name_fill (*Perl_Icomppad_name_fill_ptr(aTHX))
1N/A#undef PL_comppad_name_floor
1N/A#define PL_comppad_name_floor (*Perl_Icomppad_name_floor_ptr(aTHX))
1N/A#undef PL_cop_seqmax
1N/A#define PL_cop_seqmax (*Perl_Icop_seqmax_ptr(aTHX))
1N/A#undef PL_copline
1N/A#define PL_copline (*Perl_Icopline_ptr(aTHX))
1N/A#undef PL_cred_mutex
1N/A#define PL_cred_mutex (*Perl_Icred_mutex_ptr(aTHX))
1N/A#undef PL_cryptseen
1N/A#define PL_cryptseen (*Perl_Icryptseen_ptr(aTHX))
1N/A#undef PL_cshlen
1N/A#define PL_cshlen (*Perl_Icshlen_ptr(aTHX))
1N/A#undef PL_cshname
1N/A#define PL_cshname (*Perl_Icshname_ptr(aTHX))
1N/A#undef PL_curcopdb
1N/A#define PL_curcopdb (*Perl_Icurcopdb_ptr(aTHX))
1N/A#undef PL_curstname
1N/A#define PL_curstname (*Perl_Icurstname_ptr(aTHX))
1N/A#undef PL_curthr
1N/A#define PL_curthr (*Perl_Icurthr_ptr(aTHX))
1N/A#undef PL_custom_op_descs
1N/A#define PL_custom_op_descs (*Perl_Icustom_op_descs_ptr(aTHX))
1N/A#undef PL_custom_op_names
1N/A#define PL_custom_op_names (*Perl_Icustom_op_names_ptr(aTHX))
1N/A#undef PL_dbargs
1N/A#define PL_dbargs (*Perl_Idbargs_ptr(aTHX))
1N/A#undef PL_debstash
1N/A#define PL_debstash (*Perl_Idebstash_ptr(aTHX))
1N/A#undef PL_debug
1N/A#define PL_debug (*Perl_Idebug_ptr(aTHX))
1N/A#undef PL_debug_pad
1N/A#define PL_debug_pad (*Perl_Idebug_pad_ptr(aTHX))
1N/A#undef PL_def_layerlist
1N/A#define PL_def_layerlist (*Perl_Idef_layerlist_ptr(aTHX))
1N/A#undef PL_defgv
1N/A#define PL_defgv (*Perl_Idefgv_ptr(aTHX))
1N/A#undef PL_diehook
1N/A#define PL_diehook (*Perl_Idiehook_ptr(aTHX))
1N/A#undef PL_doextract
1N/A#define PL_doextract (*Perl_Idoextract_ptr(aTHX))
1N/A#undef PL_doswitches
1N/A#define PL_doswitches (*Perl_Idoswitches_ptr(aTHX))
1N/A#undef PL_dowarn
1N/A#define PL_dowarn (*Perl_Idowarn_ptr(aTHX))
1N/A#undef PL_e_script
1N/A#define PL_e_script (*Perl_Ie_script_ptr(aTHX))
1N/A#undef PL_egid
1N/A#define PL_egid (*Perl_Iegid_ptr(aTHX))
1N/A#undef PL_encoding
1N/A#define PL_encoding (*Perl_Iencoding_ptr(aTHX))
1N/A#undef PL_endav
1N/A#define PL_endav (*Perl_Iendav_ptr(aTHX))
1N/A#undef PL_envgv
1N/A#define PL_envgv (*Perl_Ienvgv_ptr(aTHX))
1N/A#undef PL_errgv
1N/A#define PL_errgv (*Perl_Ierrgv_ptr(aTHX))
1N/A#undef PL_error_count
1N/A#define PL_error_count (*Perl_Ierror_count_ptr(aTHX))
1N/A#undef PL_euid
1N/A#define PL_euid (*Perl_Ieuid_ptr(aTHX))
1N/A#undef PL_eval_cond
1N/A#define PL_eval_cond (*Perl_Ieval_cond_ptr(aTHX))
1N/A#undef PL_eval_mutex
1N/A#define PL_eval_mutex (*Perl_Ieval_mutex_ptr(aTHX))
1N/A#undef PL_eval_owner
1N/A#define PL_eval_owner (*Perl_Ieval_owner_ptr(aTHX))
1N/A#undef PL_eval_root
1N/A#define PL_eval_root (*Perl_Ieval_root_ptr(aTHX))
1N/A#undef PL_eval_start
1N/A#define PL_eval_start (*Perl_Ieval_start_ptr(aTHX))
1N/A#undef PL_evalseq
1N/A#define PL_evalseq (*Perl_Ievalseq_ptr(aTHX))
1N/A#undef PL_exit_flags
1N/A#define PL_exit_flags (*Perl_Iexit_flags_ptr(aTHX))
1N/A#undef PL_exitlist
1N/A#define PL_exitlist (*Perl_Iexitlist_ptr(aTHX))
1N/A#undef PL_exitlistlen
1N/A#define PL_exitlistlen (*Perl_Iexitlistlen_ptr(aTHX))
1N/A#undef PL_expect
1N/A#define PL_expect (*Perl_Iexpect_ptr(aTHX))
1N/A#undef PL_fdpid
1N/A#define PL_fdpid (*Perl_Ifdpid_ptr(aTHX))
1N/A#undef PL_fdpid_mutex
1N/A#define PL_fdpid_mutex (*Perl_Ifdpid_mutex_ptr(aTHX))
1N/A#undef PL_fdscript
1N/A#define PL_fdscript (*Perl_Ifdscript_ptr(aTHX))
1N/A#undef PL_filemode
1N/A#define PL_filemode (*Perl_Ifilemode_ptr(aTHX))
1N/A#undef PL_forkprocess
1N/A#define PL_forkprocess (*Perl_Iforkprocess_ptr(aTHX))
1N/A#undef PL_formfeed
1N/A#define PL_formfeed (*Perl_Iformfeed_ptr(aTHX))
1N/A#undef PL_generation
1N/A#define PL_generation (*Perl_Igeneration_ptr(aTHX))
1N/A#undef PL_gensym
1N/A#define PL_gensym (*Perl_Igensym_ptr(aTHX))
1N/A#undef PL_gid
1N/A#define PL_gid (*Perl_Igid_ptr(aTHX))
1N/A#undef PL_glob_index
1N/A#define PL_glob_index (*Perl_Iglob_index_ptr(aTHX))
1N/A#undef PL_globalstash
1N/A#define PL_globalstash (*Perl_Iglobalstash_ptr(aTHX))
1N/A#undef PL_hash_seed
1N/A#define PL_hash_seed (*Perl_Ihash_seed_ptr(aTHX))
1N/A#undef PL_hash_seed_set
1N/A#define PL_hash_seed_set (*Perl_Ihash_seed_set_ptr(aTHX))
1N/A#undef PL_he_arenaroot
1N/A#define PL_he_arenaroot (*Perl_Ihe_arenaroot_ptr(aTHX))
1N/A#undef PL_he_root
1N/A#define PL_he_root (*Perl_Ihe_root_ptr(aTHX))
1N/A#undef PL_hintgv
1N/A#define PL_hintgv (*Perl_Ihintgv_ptr(aTHX))
1N/A#undef PL_hints
1N/A#define PL_hints (*Perl_Ihints_ptr(aTHX))
1N/A#undef PL_in_clean_all
1N/A#define PL_in_clean_all (*Perl_Iin_clean_all_ptr(aTHX))
1N/A#undef PL_in_clean_objs
1N/A#define PL_in_clean_objs (*Perl_Iin_clean_objs_ptr(aTHX))
1N/A#undef PL_in_load_module
1N/A#define PL_in_load_module (*Perl_Iin_load_module_ptr(aTHX))
1N/A#undef PL_in_my
1N/A#define PL_in_my (*Perl_Iin_my_ptr(aTHX))
1N/A#undef PL_in_my_stash
1N/A#define PL_in_my_stash (*Perl_Iin_my_stash_ptr(aTHX))
1N/A#undef PL_incgv
1N/A#define PL_incgv (*Perl_Iincgv_ptr(aTHX))
1N/A#undef PL_initav
1N/A#define PL_initav (*Perl_Iinitav_ptr(aTHX))
1N/A#undef PL_inplace
1N/A#define PL_inplace (*Perl_Iinplace_ptr(aTHX))
1N/A#undef PL_known_layers
1N/A#define PL_known_layers (*Perl_Iknown_layers_ptr(aTHX))
1N/A#undef PL_last_lop
1N/A#define PL_last_lop (*Perl_Ilast_lop_ptr(aTHX))
1N/A#undef PL_last_lop_op
1N/A#define PL_last_lop_op (*Perl_Ilast_lop_op_ptr(aTHX))
1N/A#undef PL_last_swash_hv
1N/A#define PL_last_swash_hv (*Perl_Ilast_swash_hv_ptr(aTHX))
1N/A#undef PL_last_swash_key
1N/A#define PL_last_swash_key (*Perl_Ilast_swash_key_ptr(aTHX))
1N/A#undef PL_last_swash_klen
1N/A#define PL_last_swash_klen (*Perl_Ilast_swash_klen_ptr(aTHX))
1N/A#undef PL_last_swash_slen
1N/A#define PL_last_swash_slen (*Perl_Ilast_swash_slen_ptr(aTHX))
1N/A#undef PL_last_swash_tmps
1N/A#define PL_last_swash_tmps (*Perl_Ilast_swash_tmps_ptr(aTHX))
1N/A#undef PL_last_uni
1N/A#define PL_last_uni (*Perl_Ilast_uni_ptr(aTHX))
1N/A#undef PL_lastfd
1N/A#define PL_lastfd (*Perl_Ilastfd_ptr(aTHX))
1N/A#undef PL_laststatval
1N/A#define PL_laststatval (*Perl_Ilaststatval_ptr(aTHX))
1N/A#undef PL_laststype
1N/A#define PL_laststype (*Perl_Ilaststype_ptr(aTHX))
1N/A#undef PL_lex_brackets
1N/A#define PL_lex_brackets (*Perl_Ilex_brackets_ptr(aTHX))
1N/A#undef PL_lex_brackstack
1N/A#define PL_lex_brackstack (*Perl_Ilex_brackstack_ptr(aTHX))
1N/A#undef PL_lex_casemods
1N/A#define PL_lex_casemods (*Perl_Ilex_casemods_ptr(aTHX))
1N/A#undef PL_lex_casestack
1N/A#define PL_lex_casestack (*Perl_Ilex_casestack_ptr(aTHX))
1N/A#undef PL_lex_defer
1N/A#define PL_lex_defer (*Perl_Ilex_defer_ptr(aTHX))
1N/A#undef PL_lex_dojoin
1N/A#define PL_lex_dojoin (*Perl_Ilex_dojoin_ptr(aTHX))
1N/A#undef PL_lex_expect
1N/A#define PL_lex_expect (*Perl_Ilex_expect_ptr(aTHX))
1N/A#undef PL_lex_formbrack
1N/A#define PL_lex_formbrack (*Perl_Ilex_formbrack_ptr(aTHX))
1N/A#undef PL_lex_inpat
1N/A#define PL_lex_inpat (*Perl_Ilex_inpat_ptr(aTHX))
1N/A#undef PL_lex_inwhat
1N/A#define PL_lex_inwhat (*Perl_Ilex_inwhat_ptr(aTHX))
1N/A#undef PL_lex_op
1N/A#define PL_lex_op (*Perl_Ilex_op_ptr(aTHX))
1N/A#undef PL_lex_repl
1N/A#define PL_lex_repl (*Perl_Ilex_repl_ptr(aTHX))
1N/A#undef PL_lex_starts
1N/A#define PL_lex_starts (*Perl_Ilex_starts_ptr(aTHX))
1N/A#undef PL_lex_state
1N/A#define PL_lex_state (*Perl_Ilex_state_ptr(aTHX))
1N/A#undef PL_lex_stuff
1N/A#define PL_lex_stuff (*Perl_Ilex_stuff_ptr(aTHX))
1N/A#undef PL_lineary
1N/A#define PL_lineary (*Perl_Ilineary_ptr(aTHX))
1N/A#undef PL_linestart
1N/A#define PL_linestart (*Perl_Ilinestart_ptr(aTHX))
1N/A#undef PL_linestr
1N/A#define PL_linestr (*Perl_Ilinestr_ptr(aTHX))
1N/A#undef PL_localpatches
1N/A#define PL_localpatches (*Perl_Ilocalpatches_ptr(aTHX))
1N/A#undef PL_lockhook
1N/A#define PL_lockhook (*Perl_Ilockhook_ptr(aTHX))
1N/A#undef PL_main_cv
1N/A#define PL_main_cv (*Perl_Imain_cv_ptr(aTHX))
1N/A#undef PL_main_root
1N/A#define PL_main_root (*Perl_Imain_root_ptr(aTHX))
1N/A#undef PL_main_start
1N/A#define PL_main_start (*Perl_Imain_start_ptr(aTHX))
1N/A#undef PL_max_intro_pending
1N/A#define PL_max_intro_pending (*Perl_Imax_intro_pending_ptr(aTHX))
1N/A#undef PL_maxo
1N/A#define PL_maxo (*Perl_Imaxo_ptr(aTHX))
1N/A#undef PL_maxsysfd
1N/A#define PL_maxsysfd (*Perl_Imaxsysfd_ptr(aTHX))
1N/A#undef PL_mess_sv
1N/A#define PL_mess_sv (*Perl_Imess_sv_ptr(aTHX))
1N/A#undef PL_min_intro_pending
1N/A#define PL_min_intro_pending (*Perl_Imin_intro_pending_ptr(aTHX))
1N/A#undef PL_minus_F
1N/A#define PL_minus_F (*Perl_Iminus_F_ptr(aTHX))
1N/A#undef PL_minus_a
1N/A#define PL_minus_a (*Perl_Iminus_a_ptr(aTHX))
1N/A#undef PL_minus_c
1N/A#define PL_minus_c (*Perl_Iminus_c_ptr(aTHX))
1N/A#undef PL_minus_l
1N/A#define PL_minus_l (*Perl_Iminus_l_ptr(aTHX))
1N/A#undef PL_minus_n
1N/A#define PL_minus_n (*Perl_Iminus_n_ptr(aTHX))
1N/A#undef PL_minus_p
1N/A#define PL_minus_p (*Perl_Iminus_p_ptr(aTHX))
1N/A#undef PL_modglobal
1N/A#define PL_modglobal (*Perl_Imodglobal_ptr(aTHX))
1N/A#undef PL_multi_close
1N/A#define PL_multi_close (*Perl_Imulti_close_ptr(aTHX))
1N/A#undef PL_multi_end
1N/A#define PL_multi_end (*Perl_Imulti_end_ptr(aTHX))
1N/A#undef PL_multi_open
1N/A#define PL_multi_open (*Perl_Imulti_open_ptr(aTHX))
1N/A#undef PL_multi_start
1N/A#define PL_multi_start (*Perl_Imulti_start_ptr(aTHX))
1N/A#undef PL_multiline
1N/A#define PL_multiline (*Perl_Imultiline_ptr(aTHX))
1N/A#undef PL_nexttoke
1N/A#define PL_nexttoke (*Perl_Inexttoke_ptr(aTHX))
1N/A#undef PL_nexttype
1N/A#define PL_nexttype (*Perl_Inexttype_ptr(aTHX))
1N/A#undef PL_nextval
1N/A#define PL_nextval (*Perl_Inextval_ptr(aTHX))
1N/A#undef PL_nice_chunk
1N/A#define PL_nice_chunk (*Perl_Inice_chunk_ptr(aTHX))
1N/A#undef PL_nice_chunk_size
1N/A#define PL_nice_chunk_size (*Perl_Inice_chunk_size_ptr(aTHX))
1N/A#undef PL_nomemok
1N/A#define PL_nomemok (*Perl_Inomemok_ptr(aTHX))
1N/A#undef PL_nthreads
1N/A#define PL_nthreads (*Perl_Inthreads_ptr(aTHX))
1N/A#undef PL_nthreads_cond
1N/A#define PL_nthreads_cond (*Perl_Inthreads_cond_ptr(aTHX))
1N/A#undef PL_nullstash
1N/A#define PL_nullstash (*Perl_Inullstash_ptr(aTHX))
1N/A#undef PL_numeric_compat1
1N/A#define PL_numeric_compat1 (*Perl_Inumeric_compat1_ptr(aTHX))
1N/A#undef PL_numeric_local
1N/A#define PL_numeric_local (*Perl_Inumeric_local_ptr(aTHX))
1N/A#undef PL_numeric_name
1N/A#define PL_numeric_name (*Perl_Inumeric_name_ptr(aTHX))
1N/A#undef PL_numeric_radix_sv
1N/A#define PL_numeric_radix_sv (*Perl_Inumeric_radix_sv_ptr(aTHX))
1N/A#undef PL_numeric_standard
1N/A#define PL_numeric_standard (*Perl_Inumeric_standard_ptr(aTHX))
1N/A#undef PL_ofmt
1N/A#define PL_ofmt (*Perl_Iofmt_ptr(aTHX))
1N/A#undef PL_oldbufptr
1N/A#define PL_oldbufptr (*Perl_Ioldbufptr_ptr(aTHX))
1N/A#undef PL_oldname
1N/A#define PL_oldname (*Perl_Ioldname_ptr(aTHX))
1N/A#undef PL_oldoldbufptr
1N/A#define PL_oldoldbufptr (*Perl_Ioldoldbufptr_ptr(aTHX))
1N/A#undef PL_op_mask
1N/A#define PL_op_mask (*Perl_Iop_mask_ptr(aTHX))
1N/A#undef PL_op_seqmax
1N/A#define PL_op_seqmax (*Perl_Iop_seqmax_ptr(aTHX))
1N/A#undef PL_origalen
1N/A#define PL_origalen (*Perl_Iorigalen_ptr(aTHX))
1N/A#undef PL_origargc
1N/A#define PL_origargc (*Perl_Iorigargc_ptr(aTHX))
1N/A#undef PL_origargv
1N/A#define PL_origargv (*Perl_Iorigargv_ptr(aTHX))
1N/A#undef PL_origenviron
1N/A#define PL_origenviron (*Perl_Iorigenviron_ptr(aTHX))
1N/A#undef PL_origfilename
1N/A#define PL_origfilename (*Perl_Iorigfilename_ptr(aTHX))
1N/A#undef PL_ors_sv
1N/A#define PL_ors_sv (*Perl_Iors_sv_ptr(aTHX))
1N/A#undef PL_osname
1N/A#define PL_osname (*Perl_Iosname_ptr(aTHX))
1N/A#undef PL_pad_reset_pending
1N/A#define PL_pad_reset_pending (*Perl_Ipad_reset_pending_ptr(aTHX))
1N/A#undef PL_padix
1N/A#define PL_padix (*Perl_Ipadix_ptr(aTHX))
1N/A#undef PL_padix_floor
1N/A#define PL_padix_floor (*Perl_Ipadix_floor_ptr(aTHX))
1N/A#undef PL_patchlevel
1N/A#define PL_patchlevel (*Perl_Ipatchlevel_ptr(aTHX))
1N/A#undef PL_pending_ident
1N/A#define PL_pending_ident (*Perl_Ipending_ident_ptr(aTHX))
1N/A#undef PL_perl_destruct_level
1N/A#define PL_perl_destruct_level (*Perl_Iperl_destruct_level_ptr(aTHX))
1N/A#undef PL_perldb
1N/A#define PL_perldb (*Perl_Iperldb_ptr(aTHX))
1N/A#undef PL_perlio
1N/A#define PL_perlio (*Perl_Iperlio_ptr(aTHX))
1N/A#undef PL_pidstatus
1N/A#define PL_pidstatus (*Perl_Ipidstatus_ptr(aTHX))
1N/A#undef PL_ppid
1N/A#define PL_ppid (*Perl_Ippid_ptr(aTHX))
1N/A#undef PL_preambleav
1N/A#define PL_preambleav (*Perl_Ipreambleav_ptr(aTHX))
1N/A#undef PL_preambled
1N/A#define PL_preambled (*Perl_Ipreambled_ptr(aTHX))
1N/A#undef PL_preprocess
1N/A#define PL_preprocess (*Perl_Ipreprocess_ptr(aTHX))
1N/A#undef PL_profiledata
1N/A#define PL_profiledata (*Perl_Iprofiledata_ptr(aTHX))
1N/A#undef PL_psig_name
1N/A#define PL_psig_name (*Perl_Ipsig_name_ptr(aTHX))
1N/A#undef PL_psig_pend
1N/A#define PL_psig_pend (*Perl_Ipsig_pend_ptr(aTHX))
1N/A#undef PL_psig_ptr
1N/A#define PL_psig_ptr (*Perl_Ipsig_ptr_ptr(aTHX))
1N/A#undef PL_ptr_table
1N/A#define PL_ptr_table (*Perl_Iptr_table_ptr(aTHX))
1N/A#undef PL_reentrant_buffer
1N/A#define PL_reentrant_buffer (*Perl_Ireentrant_buffer_ptr(aTHX))
1N/A#undef PL_reentrant_retint
1N/A#define PL_reentrant_retint (*Perl_Ireentrant_retint_ptr(aTHX))
1N/A#undef PL_regex_pad
1N/A#define PL_regex_pad (*Perl_Iregex_pad_ptr(aTHX))
1N/A#undef PL_regex_padav
1N/A#define PL_regex_padav (*Perl_Iregex_padav_ptr(aTHX))
1N/A#undef PL_rehash_seed
1N/A#define PL_rehash_seed (*Perl_Irehash_seed_ptr(aTHX))
1N/A#undef PL_rehash_seed_set
1N/A#define PL_rehash_seed_set (*Perl_Irehash_seed_set_ptr(aTHX))
1N/A#undef PL_replgv
1N/A#define PL_replgv (*Perl_Ireplgv_ptr(aTHX))
1N/A#undef PL_rsfp
1N/A#define PL_rsfp (*Perl_Irsfp_ptr(aTHX))
1N/A#undef PL_rsfp_filters
1N/A#define PL_rsfp_filters (*Perl_Irsfp_filters_ptr(aTHX))
1N/A#undef PL_runops
1N/A#define PL_runops (*Perl_Irunops_ptr(aTHX))
1N/A#undef PL_runops_dbg
1N/A#define PL_runops_dbg (*Perl_Irunops_dbg_ptr(aTHX))
1N/A#undef PL_runops_std
1N/A#define PL_runops_std (*Perl_Irunops_std_ptr(aTHX))
1N/A#undef PL_savebegin
1N/A#define PL_savebegin (*Perl_Isavebegin_ptr(aTHX))
1N/A#undef PL_sawampersand
1N/A#define PL_sawampersand (*Perl_Isawampersand_ptr(aTHX))
1N/A#undef PL_sh_path_compat
1N/A#define PL_sh_path_compat (*Perl_Ish_path_compat_ptr(aTHX))
1N/A#undef PL_sharehook
1N/A#define PL_sharehook (*Perl_Isharehook_ptr(aTHX))
1N/A#undef PL_sig_pending
1N/A#define PL_sig_pending (*Perl_Isig_pending_ptr(aTHX))
1N/A#undef PL_sighandlerp
1N/A#define PL_sighandlerp (*Perl_Isighandlerp_ptr(aTHX))
1N/A#undef PL_signals
1N/A#define PL_signals (*Perl_Isignals_ptr(aTHX))
1N/A#undef PL_sort_RealCmp
1N/A#define PL_sort_RealCmp (*Perl_Isort_RealCmp_ptr(aTHX))
1N/A#undef PL_splitstr
1N/A#define PL_splitstr (*Perl_Isplitstr_ptr(aTHX))
1N/A#undef PL_srand_called
1N/A#define PL_srand_called (*Perl_Isrand_called_ptr(aTHX))
1N/A#undef PL_stashcache
1N/A#define PL_stashcache (*Perl_Istashcache_ptr(aTHX))
1N/A#undef PL_statusvalue
1N/A#define PL_statusvalue (*Perl_Istatusvalue_ptr(aTHX))
1N/A#undef PL_statusvalue_vms
1N/A#define PL_statusvalue_vms (*Perl_Istatusvalue_vms_ptr(aTHX))
1N/A#undef PL_stderrgv
1N/A#define PL_stderrgv (*Perl_Istderrgv_ptr(aTHX))
1N/A#undef PL_stdingv
1N/A#define PL_stdingv (*Perl_Istdingv_ptr(aTHX))
1N/A#undef PL_strtab
1N/A#define PL_strtab (*Perl_Istrtab_ptr(aTHX))
1N/A#undef PL_strtab_mutex
1N/A#define PL_strtab_mutex (*Perl_Istrtab_mutex_ptr(aTHX))
1N/A#undef PL_sub_generation
1N/A#define PL_sub_generation (*Perl_Isub_generation_ptr(aTHX))
1N/A#undef PL_sublex_info
1N/A#define PL_sublex_info (*Perl_Isublex_info_ptr(aTHX))
1N/A#undef PL_subline
1N/A#define PL_subline (*Perl_Isubline_ptr(aTHX))
1N/A#undef PL_subname
1N/A#define PL_subname (*Perl_Isubname_ptr(aTHX))
1N/A#undef PL_suidscript
1N/A#define PL_suidscript (*Perl_Isuidscript_ptr(aTHX))
1N/A#undef PL_sv_arenaroot
1N/A#define PL_sv_arenaroot (*Perl_Isv_arenaroot_ptr(aTHX))
1N/A#undef PL_sv_count
1N/A#define PL_sv_count (*Perl_Isv_count_ptr(aTHX))
1N/A#undef PL_sv_lock_mutex
1N/A#define PL_sv_lock_mutex (*Perl_Isv_lock_mutex_ptr(aTHX))
1N/A#undef PL_sv_mutex
1N/A#define PL_sv_mutex (*Perl_Isv_mutex_ptr(aTHX))
1N/A#undef PL_sv_no
1N/A#define PL_sv_no (*Perl_Isv_no_ptr(aTHX))
1N/A#undef PL_sv_objcount
1N/A#define PL_sv_objcount (*Perl_Isv_objcount_ptr(aTHX))
1N/A#undef PL_sv_root
1N/A#define PL_sv_root (*Perl_Isv_root_ptr(aTHX))
1N/A#undef PL_sv_undef
1N/A#define PL_sv_undef (*Perl_Isv_undef_ptr(aTHX))
1N/A#undef PL_sv_yes
1N/A#define PL_sv_yes (*Perl_Isv_yes_ptr(aTHX))
1N/A#undef PL_svref_mutex
1N/A#define PL_svref_mutex (*Perl_Isvref_mutex_ptr(aTHX))
1N/A#undef PL_sys_intern
1N/A#define PL_sys_intern (*Perl_Isys_intern_ptr(aTHX))
1N/A#undef PL_taint_warn
1N/A#define PL_taint_warn (*Perl_Itaint_warn_ptr(aTHX))
1N/A#undef PL_tainting
1N/A#define PL_tainting (*Perl_Itainting_ptr(aTHX))
1N/A#undef PL_threadhook
1N/A#define PL_threadhook (*Perl_Ithreadhook_ptr(aTHX))
1N/A#undef PL_threadnum
1N/A#define PL_threadnum (*Perl_Ithreadnum_ptr(aTHX))
1N/A#undef PL_threads_mutex
1N/A#define PL_threads_mutex (*Perl_Ithreads_mutex_ptr(aTHX))
1N/A#undef PL_threadsv_names
1N/A#define PL_threadsv_names (*Perl_Ithreadsv_names_ptr(aTHX))
1N/A#undef PL_thrsv
1N/A#define PL_thrsv (*Perl_Ithrsv_ptr(aTHX))
1N/A#undef PL_tokenbuf
1N/A#define PL_tokenbuf (*Perl_Itokenbuf_ptr(aTHX))
1N/A#undef PL_uid
1N/A#define PL_uid (*Perl_Iuid_ptr(aTHX))
1N/A#undef PL_unicode
1N/A#define PL_unicode (*Perl_Iunicode_ptr(aTHX))
1N/A#undef PL_unlockhook
1N/A#define PL_unlockhook (*Perl_Iunlockhook_ptr(aTHX))
1N/A#undef PL_unsafe
1N/A#define PL_unsafe (*Perl_Iunsafe_ptr(aTHX))
1N/A#undef PL_utf8_alnum
1N/A#define PL_utf8_alnum (*Perl_Iutf8_alnum_ptr(aTHX))
1N/A#undef PL_utf8_alnumc
1N/A#define PL_utf8_alnumc (*Perl_Iutf8_alnumc_ptr(aTHX))
1N/A#undef PL_utf8_alpha
1N/A#define PL_utf8_alpha (*Perl_Iutf8_alpha_ptr(aTHX))
1N/A#undef PL_utf8_ascii
1N/A#define PL_utf8_ascii (*Perl_Iutf8_ascii_ptr(aTHX))
1N/A#undef PL_utf8_cntrl
1N/A#define PL_utf8_cntrl (*Perl_Iutf8_cntrl_ptr(aTHX))
1N/A#undef PL_utf8_digit
1N/A#define PL_utf8_digit (*Perl_Iutf8_digit_ptr(aTHX))
1N/A#undef PL_utf8_graph
1N/A#define PL_utf8_graph (*Perl_Iutf8_graph_ptr(aTHX))
1N/A#undef PL_utf8_idcont
1N/A#define PL_utf8_idcont (*Perl_Iutf8_idcont_ptr(aTHX))
1N/A#undef PL_utf8_idstart
1N/A#define PL_utf8_idstart (*Perl_Iutf8_idstart_ptr(aTHX))
1N/A#undef PL_utf8_lower
1N/A#define PL_utf8_lower (*Perl_Iutf8_lower_ptr(aTHX))
1N/A#undef PL_utf8_mark
1N/A#define PL_utf8_mark (*Perl_Iutf8_mark_ptr(aTHX))
1N/A#undef PL_utf8_print
1N/A#define PL_utf8_print (*Perl_Iutf8_print_ptr(aTHX))
1N/A#undef PL_utf8_punct
1N/A#define PL_utf8_punct (*Perl_Iutf8_punct_ptr(aTHX))
1N/A#undef PL_utf8_space
1N/A#define PL_utf8_space (*Perl_Iutf8_space_ptr(aTHX))
1N/A#undef PL_utf8_tofold
1N/A#define PL_utf8_tofold (*Perl_Iutf8_tofold_ptr(aTHX))
1N/A#undef PL_utf8_tolower
1N/A#define PL_utf8_tolower (*Perl_Iutf8_tolower_ptr(aTHX))
1N/A#undef PL_utf8_totitle
1N/A#define PL_utf8_totitle (*Perl_Iutf8_totitle_ptr(aTHX))
1N/A#undef PL_utf8_toupper
1N/A#define PL_utf8_toupper (*Perl_Iutf8_toupper_ptr(aTHX))
1N/A#undef PL_utf8_upper
1N/A#define PL_utf8_upper (*Perl_Iutf8_upper_ptr(aTHX))
1N/A#undef PL_utf8_xdigit
1N/A#define PL_utf8_xdigit (*Perl_Iutf8_xdigit_ptr(aTHX))
1N/A#undef PL_utf8locale
1N/A#define PL_utf8locale (*Perl_Iutf8locale_ptr(aTHX))
1N/A#undef PL_uudmap
1N/A#define PL_uudmap (*Perl_Iuudmap_ptr(aTHX))
1N/A#undef PL_warnhook
1N/A#define PL_warnhook (*Perl_Iwarnhook_ptr(aTHX))
1N/A#undef PL_widesyscalls
1N/A#define PL_widesyscalls (*Perl_Iwidesyscalls_ptr(aTHX))
1N/A#undef PL_xiv_arenaroot
1N/A#define PL_xiv_arenaroot (*Perl_Ixiv_arenaroot_ptr(aTHX))
1N/A#undef PL_xiv_root
1N/A#define PL_xiv_root (*Perl_Ixiv_root_ptr(aTHX))
1N/A#undef PL_xnv_arenaroot
1N/A#define PL_xnv_arenaroot (*Perl_Ixnv_arenaroot_ptr(aTHX))
1N/A#undef PL_xnv_root
1N/A#define PL_xnv_root (*Perl_Ixnv_root_ptr(aTHX))
1N/A#undef PL_xpv_arenaroot
1N/A#define PL_xpv_arenaroot (*Perl_Ixpv_arenaroot_ptr(aTHX))
1N/A#undef PL_xpv_root
1N/A#define PL_xpv_root (*Perl_Ixpv_root_ptr(aTHX))
1N/A#undef PL_xpvav_arenaroot
1N/A#define PL_xpvav_arenaroot (*Perl_Ixpvav_arenaroot_ptr(aTHX))
1N/A#undef PL_xpvav_root
1N/A#define PL_xpvav_root (*Perl_Ixpvav_root_ptr(aTHX))
1N/A#undef PL_xpvbm_arenaroot
1N/A#define PL_xpvbm_arenaroot (*Perl_Ixpvbm_arenaroot_ptr(aTHX))
1N/A#undef PL_xpvbm_root
1N/A#define PL_xpvbm_root (*Perl_Ixpvbm_root_ptr(aTHX))
1N/A#undef PL_xpvcv_arenaroot
1N/A#define PL_xpvcv_arenaroot (*Perl_Ixpvcv_arenaroot_ptr(aTHX))
1N/A#undef PL_xpvcv_root
1N/A#define PL_xpvcv_root (*Perl_Ixpvcv_root_ptr(aTHX))
1N/A#undef PL_xpvhv_arenaroot
1N/A#define PL_xpvhv_arenaroot (*Perl_Ixpvhv_arenaroot_ptr(aTHX))
1N/A#undef PL_xpvhv_root
1N/A#define PL_xpvhv_root (*Perl_Ixpvhv_root_ptr(aTHX))
1N/A#undef PL_xpviv_arenaroot
1N/A#define PL_xpviv_arenaroot (*Perl_Ixpviv_arenaroot_ptr(aTHX))
1N/A#undef PL_xpviv_root
1N/A#define PL_xpviv_root (*Perl_Ixpviv_root_ptr(aTHX))
1N/A#undef PL_xpvlv_arenaroot
1N/A#define PL_xpvlv_arenaroot (*Perl_Ixpvlv_arenaroot_ptr(aTHX))
1N/A#undef PL_xpvlv_root
1N/A#define PL_xpvlv_root (*Perl_Ixpvlv_root_ptr(aTHX))
1N/A#undef PL_xpvmg_arenaroot
1N/A#define PL_xpvmg_arenaroot (*Perl_Ixpvmg_arenaroot_ptr(aTHX))
1N/A#undef PL_xpvmg_root
1N/A#define PL_xpvmg_root (*Perl_Ixpvmg_root_ptr(aTHX))
1N/A#undef PL_xpvnv_arenaroot
1N/A#define PL_xpvnv_arenaroot (*Perl_Ixpvnv_arenaroot_ptr(aTHX))
1N/A#undef PL_xpvnv_root
1N/A#define PL_xpvnv_root (*Perl_Ixpvnv_root_ptr(aTHX))
1N/A#undef PL_xrv_arenaroot
1N/A#define PL_xrv_arenaroot (*Perl_Ixrv_arenaroot_ptr(aTHX))
1N/A#undef PL_xrv_root
1N/A#define PL_xrv_root (*Perl_Ixrv_root_ptr(aTHX))
1N/A#undef PL_yychar
1N/A#define PL_yychar (*Perl_Iyychar_ptr(aTHX))
1N/A#undef PL_yydebug
1N/A#define PL_yydebug (*Perl_Iyydebug_ptr(aTHX))
1N/A#undef PL_yyerrflag
1N/A#define PL_yyerrflag (*Perl_Iyyerrflag_ptr(aTHX))
1N/A#undef PL_yylval
1N/A#define PL_yylval (*Perl_Iyylval_ptr(aTHX))
1N/A#undef PL_yynerrs
1N/A#define PL_yynerrs (*Perl_Iyynerrs_ptr(aTHX))
1N/A#undef PL_yyval
1N/A#define PL_yyval (*Perl_Iyyval_ptr(aTHX))
1N/A#undef PL_Sv
1N/A#define PL_Sv (*Perl_TSv_ptr(aTHX))
1N/A#undef PL_Xpv
1N/A#define PL_Xpv (*Perl_TXpv_ptr(aTHX))
1N/A#undef PL_av_fetch_sv
1N/A#define PL_av_fetch_sv (*Perl_Tav_fetch_sv_ptr(aTHX))
1N/A#undef PL_bodytarget
1N/A#define PL_bodytarget (*Perl_Tbodytarget_ptr(aTHX))
1N/A#undef PL_bostr
1N/A#define PL_bostr (*Perl_Tbostr_ptr(aTHX))
1N/A#undef PL_chopset
1N/A#define PL_chopset (*Perl_Tchopset_ptr(aTHX))
1N/A#undef PL_colors
1N/A#define PL_colors (*Perl_Tcolors_ptr(aTHX))
1N/A#undef PL_colorset
1N/A#define PL_colorset (*Perl_Tcolorset_ptr(aTHX))
1N/A#undef PL_comppad
1N/A#define PL_comppad (*Perl_Tcomppad_ptr(aTHX))
1N/A#undef PL_curcop
1N/A#define PL_curcop (*Perl_Tcurcop_ptr(aTHX))
1N/A#undef PL_curpad
1N/A#define PL_curpad (*Perl_Tcurpad_ptr(aTHX))
1N/A#undef PL_curpm
1N/A#define PL_curpm (*Perl_Tcurpm_ptr(aTHX))
1N/A#undef PL_curstack
1N/A#define PL_curstack (*Perl_Tcurstack_ptr(aTHX))
1N/A#undef PL_curstackinfo
1N/A#define PL_curstackinfo (*Perl_Tcurstackinfo_ptr(aTHX))
1N/A#undef PL_curstash
1N/A#define PL_curstash (*Perl_Tcurstash_ptr(aTHX))
1N/A#undef PL_defoutgv
1N/A#define PL_defoutgv (*Perl_Tdefoutgv_ptr(aTHX))
1N/A#undef PL_defstash
1N/A#define PL_defstash (*Perl_Tdefstash_ptr(aTHX))
1N/A#undef PL_delaymagic
1N/A#define PL_delaymagic (*Perl_Tdelaymagic_ptr(aTHX))
1N/A#undef PL_dirty
1N/A#define PL_dirty (*Perl_Tdirty_ptr(aTHX))
1N/A#undef PL_dumpindent
1N/A#define PL_dumpindent (*Perl_Tdumpindent_ptr(aTHX))
1N/A#undef PL_efloatbuf
1N/A#define PL_efloatbuf (*Perl_Tefloatbuf_ptr(aTHX))
1N/A#undef PL_efloatsize
1N/A#define PL_efloatsize (*Perl_Tefloatsize_ptr(aTHX))
1N/A#undef PL_errors
1N/A#define PL_errors (*Perl_Terrors_ptr(aTHX))
1N/A#undef PL_extralen
1N/A#define PL_extralen (*Perl_Textralen_ptr(aTHX))
1N/A#undef PL_firstgv
1N/A#define PL_firstgv (*Perl_Tfirstgv_ptr(aTHX))
1N/A#undef PL_formtarget
1N/A#define PL_formtarget (*Perl_Tformtarget_ptr(aTHX))
1N/A#undef PL_hv_fetch_ent_mh
1N/A#define PL_hv_fetch_ent_mh (*Perl_Thv_fetch_ent_mh_ptr(aTHX))
1N/A#undef PL_hv_fetch_sv
1N/A#define PL_hv_fetch_sv (*Perl_Thv_fetch_sv_ptr(aTHX))
1N/A#undef PL_in_eval
1N/A#define PL_in_eval (*Perl_Tin_eval_ptr(aTHX))
1N/A#undef PL_last_in_gv
1N/A#define PL_last_in_gv (*Perl_Tlast_in_gv_ptr(aTHX))
1N/A#undef PL_lastgotoprobe
1N/A#define PL_lastgotoprobe (*Perl_Tlastgotoprobe_ptr(aTHX))
1N/A#undef PL_lastscream
1N/A#define PL_lastscream (*Perl_Tlastscream_ptr(aTHX))
1N/A#undef PL_localizing
1N/A#define PL_localizing (*Perl_Tlocalizing_ptr(aTHX))
1N/A#undef PL_mainstack
1N/A#define PL_mainstack (*Perl_Tmainstack_ptr(aTHX))
1N/A#undef PL_markstack
1N/A#define PL_markstack (*Perl_Tmarkstack_ptr(aTHX))
1N/A#undef PL_markstack_max
1N/A#define PL_markstack_max (*Perl_Tmarkstack_max_ptr(aTHX))
1N/A#undef PL_markstack_ptr
1N/A#define PL_markstack_ptr (*Perl_Tmarkstack_ptr_ptr(aTHX))
1N/A#undef PL_maxscream
1N/A#define PL_maxscream (*Perl_Tmaxscream_ptr(aTHX))
1N/A#undef PL_modcount
1N/A#define PL_modcount (*Perl_Tmodcount_ptr(aTHX))
1N/A#undef PL_na
1N/A#define PL_na (*Perl_Tna_ptr(aTHX))
1N/A#undef PL_nrs
1N/A#define PL_nrs (*Perl_Tnrs_ptr(aTHX))
1N/A#undef PL_ofs_sv
1N/A#define PL_ofs_sv (*Perl_Tofs_sv_ptr(aTHX))
1N/A#undef PL_op
1N/A#define PL_op (*Perl_Top_ptr(aTHX))
1N/A#undef PL_opsave
1N/A#define PL_opsave (*Perl_Topsave_ptr(aTHX))
1N/A#undef PL_peepp
1N/A#define PL_peepp (*Perl_Tpeepp_ptr(aTHX))
1N/A#undef PL_protect
1N/A#define PL_protect (*Perl_Tprotect_ptr(aTHX))
1N/A#undef PL_reg_call_cc
1N/A#define PL_reg_call_cc (*Perl_Treg_call_cc_ptr(aTHX))
1N/A#undef PL_reg_curpm
1N/A#define PL_reg_curpm (*Perl_Treg_curpm_ptr(aTHX))
1N/A#undef PL_reg_eval_set
1N/A#define PL_reg_eval_set (*Perl_Treg_eval_set_ptr(aTHX))
1N/A#undef PL_reg_flags
1N/A#define PL_reg_flags (*Perl_Treg_flags_ptr(aTHX))
1N/A#undef PL_reg_ganch
1N/A#define PL_reg_ganch (*Perl_Treg_ganch_ptr(aTHX))
1N/A#undef PL_reg_leftiter
1N/A#define PL_reg_leftiter (*Perl_Treg_leftiter_ptr(aTHX))
1N/A#undef PL_reg_magic
1N/A#define PL_reg_magic (*Perl_Treg_magic_ptr(aTHX))
1N/A#undef PL_reg_match_utf8
1N/A#define PL_reg_match_utf8 (*Perl_Treg_match_utf8_ptr(aTHX))
1N/A#undef PL_reg_maxiter
1N/A#define PL_reg_maxiter (*Perl_Treg_maxiter_ptr(aTHX))
1N/A#undef PL_reg_oldcurpm
1N/A#define PL_reg_oldcurpm (*Perl_Treg_oldcurpm_ptr(aTHX))
1N/A#undef PL_reg_oldpos
1N/A#define PL_reg_oldpos (*Perl_Treg_oldpos_ptr(aTHX))
1N/A#undef PL_reg_oldsaved
1N/A#define PL_reg_oldsaved (*Perl_Treg_oldsaved_ptr(aTHX))
1N/A#undef PL_reg_oldsavedlen
1N/A#define PL_reg_oldsavedlen (*Perl_Treg_oldsavedlen_ptr(aTHX))
1N/A#undef PL_reg_poscache
1N/A#define PL_reg_poscache (*Perl_Treg_poscache_ptr(aTHX))
1N/A#undef PL_reg_poscache_size
1N/A#define PL_reg_poscache_size (*Perl_Treg_poscache_size_ptr(aTHX))
1N/A#undef PL_reg_re
1N/A#define PL_reg_re (*Perl_Treg_re_ptr(aTHX))
1N/A#undef PL_reg_start_tmp
1N/A#define PL_reg_start_tmp (*Perl_Treg_start_tmp_ptr(aTHX))
1N/A#undef PL_reg_start_tmpl
1N/A#define PL_reg_start_tmpl (*Perl_Treg_start_tmpl_ptr(aTHX))
1N/A#undef PL_reg_starttry
1N/A#define PL_reg_starttry (*Perl_Treg_starttry_ptr(aTHX))
1N/A#undef PL_reg_sv
1N/A#define PL_reg_sv (*Perl_Treg_sv_ptr(aTHX))
1N/A#undef PL_reg_whilem_seen
1N/A#define PL_reg_whilem_seen (*Perl_Treg_whilem_seen_ptr(aTHX))
1N/A#undef PL_regbol
1N/A#define PL_regbol (*Perl_Tregbol_ptr(aTHX))
1N/A#undef PL_regcc
1N/A#define PL_regcc (*Perl_Tregcc_ptr(aTHX))
1N/A#undef PL_regcode
1N/A#define PL_regcode (*Perl_Tregcode_ptr(aTHX))
1N/A#undef PL_regcomp_parse
1N/A#define PL_regcomp_parse (*Perl_Tregcomp_parse_ptr(aTHX))
1N/A#undef PL_regcomp_rx
1N/A#define PL_regcomp_rx (*Perl_Tregcomp_rx_ptr(aTHX))
1N/A#undef PL_regcompat1
1N/A#define PL_regcompat1 (*Perl_Tregcompat1_ptr(aTHX))
1N/A#undef PL_regcompp
1N/A#define PL_regcompp (*Perl_Tregcompp_ptr(aTHX))
1N/A#undef PL_regdata
1N/A#define PL_regdata (*Perl_Tregdata_ptr(aTHX))
1N/A#undef PL_regdummy
1N/A#define PL_regdummy (*Perl_Tregdummy_ptr(aTHX))
1N/A#undef PL_regendp
1N/A#define PL_regendp (*Perl_Tregendp_ptr(aTHX))
1N/A#undef PL_regeol
1N/A#define PL_regeol (*Perl_Tregeol_ptr(aTHX))
1N/A#undef PL_regexecp
1N/A#define PL_regexecp (*Perl_Tregexecp_ptr(aTHX))
1N/A#undef PL_regflags
1N/A#define PL_regflags (*Perl_Tregflags_ptr(aTHX))
1N/A#undef PL_regfree
1N/A#define PL_regfree (*Perl_Tregfree_ptr(aTHX))
1N/A#undef PL_regindent
1N/A#define PL_regindent (*Perl_Tregindent_ptr(aTHX))
1N/A#undef PL_reginput
1N/A#define PL_reginput (*Perl_Treginput_ptr(aTHX))
1N/A#undef PL_regint_start
1N/A#define PL_regint_start (*Perl_Tregint_start_ptr(aTHX))
1N/A#undef PL_regint_string
1N/A#define PL_regint_string (*Perl_Tregint_string_ptr(aTHX))
1N/A#undef PL_reginterp_cnt
1N/A#define PL_reginterp_cnt (*Perl_Treginterp_cnt_ptr(aTHX))
1N/A#undef PL_reglastcloseparen
1N/A#define PL_reglastcloseparen (*Perl_Treglastcloseparen_ptr(aTHX))
1N/A#undef PL_reglastparen
1N/A#define PL_reglastparen (*Perl_Treglastparen_ptr(aTHX))
1N/A#undef PL_regnarrate
1N/A#define PL_regnarrate (*Perl_Tregnarrate_ptr(aTHX))
1N/A#undef PL_regnaughty
1N/A#define PL_regnaughty (*Perl_Tregnaughty_ptr(aTHX))
1N/A#undef PL_regnpar
1N/A#define PL_regnpar (*Perl_Tregnpar_ptr(aTHX))
1N/A#undef PL_regprecomp
1N/A#define PL_regprecomp (*Perl_Tregprecomp_ptr(aTHX))
1N/A#undef PL_regprogram
1N/A#define PL_regprogram (*Perl_Tregprogram_ptr(aTHX))
1N/A#undef PL_regsawback
1N/A#define PL_regsawback (*Perl_Tregsawback_ptr(aTHX))
1N/A#undef PL_regseen
1N/A#define PL_regseen (*Perl_Tregseen_ptr(aTHX))
1N/A#undef PL_regsize
1N/A#define PL_regsize (*Perl_Tregsize_ptr(aTHX))
1N/A#undef PL_regstartp
1N/A#define PL_regstartp (*Perl_Tregstartp_ptr(aTHX))
1N/A#undef PL_regtill
1N/A#define PL_regtill (*Perl_Tregtill_ptr(aTHX))
1N/A#undef PL_regxend
1N/A#define PL_regxend (*Perl_Tregxend_ptr(aTHX))
1N/A#undef PL_restartop
1N/A#define PL_restartop (*Perl_Trestartop_ptr(aTHX))
1N/A#undef PL_retstack
1N/A#define PL_retstack (*Perl_Tretstack_ptr(aTHX))
1N/A#undef PL_retstack_ix
1N/A#define PL_retstack_ix (*Perl_Tretstack_ix_ptr(aTHX))
1N/A#undef PL_retstack_max
1N/A#define PL_retstack_max (*Perl_Tretstack_max_ptr(aTHX))
1N/A#undef PL_rs
1N/A#define PL_rs (*Perl_Trs_ptr(aTHX))
1N/A#undef PL_savestack
1N/A#define PL_savestack (*Perl_Tsavestack_ptr(aTHX))
1N/A#undef PL_savestack_ix
1N/A#define PL_savestack_ix (*Perl_Tsavestack_ix_ptr(aTHX))
1N/A#undef PL_savestack_max
1N/A#define PL_savestack_max (*Perl_Tsavestack_max_ptr(aTHX))
1N/A#undef PL_scopestack
1N/A#define PL_scopestack (*Perl_Tscopestack_ptr(aTHX))
1N/A#undef PL_scopestack_ix
1N/A#define PL_scopestack_ix (*Perl_Tscopestack_ix_ptr(aTHX))
1N/A#undef PL_scopestack_max
1N/A#define PL_scopestack_max (*Perl_Tscopestack_max_ptr(aTHX))
1N/A#undef PL_screamfirst
1N/A#define PL_screamfirst (*Perl_Tscreamfirst_ptr(aTHX))
1N/A#undef PL_screamnext
1N/A#define PL_screamnext (*Perl_Tscreamnext_ptr(aTHX))
1N/A#undef PL_secondgv
1N/A#define PL_secondgv (*Perl_Tsecondgv_ptr(aTHX))
1N/A#undef PL_seen_evals
1N/A#define PL_seen_evals (*Perl_Tseen_evals_ptr(aTHX))
1N/A#undef PL_seen_zerolen
1N/A#define PL_seen_zerolen (*Perl_Tseen_zerolen_ptr(aTHX))
1N/A#undef PL_sortcop
1N/A#define PL_sortcop (*Perl_Tsortcop_ptr(aTHX))
1N/A#undef PL_sortcxix
1N/A#define PL_sortcxix (*Perl_Tsortcxix_ptr(aTHX))
1N/A#undef PL_sortstash
1N/A#define PL_sortstash (*Perl_Tsortstash_ptr(aTHX))
1N/A#undef PL_stack_base
1N/A#define PL_stack_base (*Perl_Tstack_base_ptr(aTHX))
1N/A#undef PL_stack_max
1N/A#define PL_stack_max (*Perl_Tstack_max_ptr(aTHX))
1N/A#undef PL_stack_sp
1N/A#define PL_stack_sp (*Perl_Tstack_sp_ptr(aTHX))
1N/A#undef PL_start_env
1N/A#define PL_start_env (*Perl_Tstart_env_ptr(aTHX))
1N/A#undef PL_statbuf
1N/A#define PL_statbuf (*Perl_Tstatbuf_ptr(aTHX))
1N/A#undef PL_statcache
1N/A#define PL_statcache (*Perl_Tstatcache_ptr(aTHX))
1N/A#undef PL_statgv
1N/A#define PL_statgv (*Perl_Tstatgv_ptr(aTHX))
1N/A#undef PL_statname
1N/A#define PL_statname (*Perl_Tstatname_ptr(aTHX))
1N/A#undef PL_tainted
1N/A#define PL_tainted (*Perl_Ttainted_ptr(aTHX))
1N/A#undef PL_timesbuf
1N/A#define PL_timesbuf (*Perl_Ttimesbuf_ptr(aTHX))
1N/A#undef PL_tmps_floor
1N/A#define PL_tmps_floor (*Perl_Ttmps_floor_ptr(aTHX))
1N/A#undef PL_tmps_ix
1N/A#define PL_tmps_ix (*Perl_Ttmps_ix_ptr(aTHX))
1N/A#undef PL_tmps_max
1N/A#define PL_tmps_max (*Perl_Ttmps_max_ptr(aTHX))
1N/A#undef PL_tmps_stack
1N/A#define PL_tmps_stack (*Perl_Ttmps_stack_ptr(aTHX))
1N/A#undef PL_top_env
1N/A#define PL_top_env (*Perl_Ttop_env_ptr(aTHX))
1N/A#undef PL_toptarget
1N/A#define PL_toptarget (*Perl_Ttoptarget_ptr(aTHX))
1N/A#undef PL_watchaddr
1N/A#define PL_watchaddr (*Perl_Twatchaddr_ptr(aTHX))
1N/A#undef PL_watchok
1N/A#define PL_watchok (*Perl_Twatchok_ptr(aTHX))
1N/A#undef PL_No
1N/A#define PL_No (*Perl_GNo_ptr(NULL))
1N/A#undef PL_Yes
1N/A#define PL_Yes (*Perl_GYes_ptr(NULL))
1N/A#undef PL_csighandlerp
1N/A#define PL_csighandlerp (*Perl_Gcsighandlerp_ptr(NULL))
1N/A#undef PL_curinterp
1N/A#define PL_curinterp (*Perl_Gcurinterp_ptr(NULL))
1N/A#undef PL_do_undump
1N/A#define PL_do_undump (*Perl_Gdo_undump_ptr(NULL))
1N/A#undef PL_dollarzero_mutex
1N/A#define PL_dollarzero_mutex (*Perl_Gdollarzero_mutex_ptr(NULL))
1N/A#undef PL_hexdigit
1N/A#define PL_hexdigit (*Perl_Ghexdigit_ptr(NULL))
1N/A#undef PL_malloc_mutex
1N/A#define PL_malloc_mutex (*Perl_Gmalloc_mutex_ptr(NULL))
1N/A#undef PL_op_mutex
1N/A#define PL_op_mutex (*Perl_Gop_mutex_ptr(NULL))
1N/A#undef PL_patleave
1N/A#define PL_patleave (*Perl_Gpatleave_ptr(NULL))
1N/A#undef PL_sh_path
1N/A#define PL_sh_path (*Perl_Gsh_path_ptr(NULL))
1N/A#undef PL_sigfpe_saved
1N/A#define PL_sigfpe_saved (*Perl_Gsigfpe_saved_ptr(NULL))
1N/A#undef PL_sv_placeholder
1N/A#define PL_sv_placeholder (*Perl_Gsv_placeholder_ptr(NULL))
1N/A#undef PL_thr_key
1N/A#define PL_thr_key (*Perl_Gthr_key_ptr(NULL))
1N/A
1N/A#endif /* !PERL_CORE */
1N/A#endif /* MULTIPLICITY */
1N/A
1N/A#endif /* __perlapi_h__ */
1N/A