This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Added Porting/config_h.pl
[perl5.git] / perlapi.h
1 /*  -*- buffer-read-only: t -*-
2  *
3  *    perlapi.h
4  *
5  *    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999,
6  *    2000, 2001, 2002, 2003, 2004, 2005, by Larry Wall and others
7  *
8  *    You may distribute under the terms of either the GNU General Public
9  *    License or the Artistic License, as specified in the README file.
10  *
11  * !!!!!!!   DO NOT EDIT THIS FILE   !!!!!!!
12  * This file is built by embed.pl from data in embed.fnc, embed.pl,
13  * pp.sym, intrpvar.h, perlvars.h and thrdvar.h.
14  * Any changes made here will be lost!
15  *
16  * Edit those files and run 'make regen_headers' to effect changes.
17  */
18
19 /* declare accessor functions for Perl variables */
20 #ifndef __perlapi_h__
21 #define __perlapi_h__
22
23 #if defined (MULTIPLICITY)
24
25 START_EXTERN_C
26
27 #undef PERLVAR
28 #undef PERLVARA
29 #undef PERLVARI
30 #undef PERLVARIC
31 #undef PERLVARISC
32 #define PERLVAR(v,t)    EXTERN_C t* Perl_##v##_ptr(pTHX);
33 #define PERLVARA(v,n,t) typedef t PL_##v##_t[n];                        \
34                         EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
35 #define PERLVARI(v,t,i) PERLVAR(v,t)
36 #define PERLVARIC(v,t,i) PERLVAR(v, const t)
37 #define PERLVARISC(v,i) typedef const char PL_##v##_t[sizeof(i)];       \
38                         EXTERN_C PL_##v##_t* Perl_##v##_ptr(pTHX);
39
40 #include "thrdvar.h"
41 #include "intrpvar.h"
42 #include "perlvars.h"
43
44 #undef PERLVAR
45 #undef PERLVARA
46 #undef PERLVARI
47 #undef PERLVARIC
48 #undef PERLVARISC
49
50 #ifndef PERL_GLOBAL_STRUCT
51 EXTERN_C Perl_ppaddr_t** Perl_Gppaddr_ptr(pTHX);
52 EXTERN_C Perl_check_t**  Perl_Gcheck_ptr(pTHX);
53 EXTERN_C unsigned char** Perl_Gfold_locale_ptr(pTHX);
54 #define Perl_ppaddr_ptr      Perl_Gppaddr_ptr
55 #define Perl_check_ptr       Perl_Gcheck_ptr
56 #define Perl_fold_locale_ptr Perl_Gfold_locale_ptr
57 #endif
58
59 END_EXTERN_C
60
61 #if defined(PERL_CORE)
62
63 /* accessor functions for Perl variables (provide binary compatibility) */
64
65 /* these need to be mentioned here, or most linkers won't put them in
66    the perl executable */
67
68 #ifndef PERL_NO_FORCE_LINK
69
70 START_EXTERN_C
71
72 #ifndef DOINIT
73 EXTCONST void * const PL_force_link_funcs[];
74 #else
75 EXTCONST void * const PL_force_link_funcs[] = {
76 #undef PERLVAR
77 #undef PERLVARA
78 #undef PERLVARI
79 #undef PERLVARIC
80 #define PERLVAR(v,t)    (void*)Perl_##v##_ptr,
81 #define PERLVARA(v,n,t) PERLVAR(v,t)
82 #define PERLVARI(v,t,i) PERLVAR(v,t)
83 #define PERLVARIC(v,t,i) PERLVAR(v,t)
84 #define PERLVARISC(v,i) PERLVAR(v,char)
85
86 #include "thrdvar.h"
87 #include "intrpvar.h"
88 #include "perlvars.h"
89
90 #undef PERLVAR
91 #undef PERLVARA
92 #undef PERLVARI
93 #undef PERLVARIC
94 #undef PERLVARISC
95 };
96 #endif  /* DOINIT */
97
98 END_EXTERN_C
99
100 #endif  /* PERL_NO_FORCE_LINK */
101
102 #else   /* !PERL_CORE */
103
104 #undef  PL_Argv
105 #define PL_Argv                 (*Perl_IArgv_ptr(aTHX))
106 #undef  PL_Cmd
107 #define PL_Cmd                  (*Perl_ICmd_ptr(aTHX))
108 #undef  PL_DBassertion
109 #define PL_DBassertion          (*Perl_IDBassertion_ptr(aTHX))
110 #undef  PL_DBcv
111 #define PL_DBcv                 (*Perl_IDBcv_ptr(aTHX))
112 #undef  PL_DBgv
113 #define PL_DBgv                 (*Perl_IDBgv_ptr(aTHX))
114 #undef  PL_DBline
115 #define PL_DBline               (*Perl_IDBline_ptr(aTHX))
116 #undef  PL_DBsignal
117 #define PL_DBsignal             (*Perl_IDBsignal_ptr(aTHX))
118 #undef  PL_DBsingle
119 #define PL_DBsingle             (*Perl_IDBsingle_ptr(aTHX))
120 #undef  PL_DBsub
121 #define PL_DBsub                (*Perl_IDBsub_ptr(aTHX))
122 #undef  PL_DBtrace
123 #define PL_DBtrace              (*Perl_IDBtrace_ptr(aTHX))
124 #undef  PL_Dir
125 #define PL_Dir                  (*Perl_IDir_ptr(aTHX))
126 #undef  PL_Env
127 #define PL_Env                  (*Perl_IEnv_ptr(aTHX))
128 #undef  PL_LIO
129 #define PL_LIO                  (*Perl_ILIO_ptr(aTHX))
130 #undef  PL_Mem
131 #define PL_Mem                  (*Perl_IMem_ptr(aTHX))
132 #undef  PL_MemParse
133 #define PL_MemParse             (*Perl_IMemParse_ptr(aTHX))
134 #undef  PL_MemShared
135 #define PL_MemShared            (*Perl_IMemShared_ptr(aTHX))
136 #undef  PL_OpPtr
137 #define PL_OpPtr                (*Perl_IOpPtr_ptr(aTHX))
138 #undef  PL_OpSlab
139 #define PL_OpSlab               (*Perl_IOpSlab_ptr(aTHX))
140 #undef  PL_OpSpace
141 #define PL_OpSpace              (*Perl_IOpSpace_ptr(aTHX))
142 #undef  PL_Proc
143 #define PL_Proc                 (*Perl_IProc_ptr(aTHX))
144 #undef  PL_Sock
145 #define PL_Sock                 (*Perl_ISock_ptr(aTHX))
146 #undef  PL_StdIO
147 #define PL_StdIO                (*Perl_IStdIO_ptr(aTHX))
148 #undef  PL_amagic_generation
149 #define PL_amagic_generation    (*Perl_Iamagic_generation_ptr(aTHX))
150 #undef  PL_an
151 #define PL_an                   (*Perl_Ian_ptr(aTHX))
152 #undef  PL_argvgv
153 #define PL_argvgv               (*Perl_Iargvgv_ptr(aTHX))
154 #undef  PL_argvout_stack
155 #define PL_argvout_stack        (*Perl_Iargvout_stack_ptr(aTHX))
156 #undef  PL_argvoutgv
157 #define PL_argvoutgv            (*Perl_Iargvoutgv_ptr(aTHX))
158 #undef  PL_basetime
159 #define PL_basetime             (*Perl_Ibasetime_ptr(aTHX))
160 #undef  PL_beginav
161 #define PL_beginav              (*Perl_Ibeginav_ptr(aTHX))
162 #undef  PL_beginav_save
163 #define PL_beginav_save         (*Perl_Ibeginav_save_ptr(aTHX))
164 #undef  PL_bitcount
165 #define PL_bitcount             (*Perl_Ibitcount_ptr(aTHX))
166 #undef  PL_bufend
167 #define PL_bufend               (*Perl_Ibufend_ptr(aTHX))
168 #undef  PL_bufptr
169 #define PL_bufptr               (*Perl_Ibufptr_ptr(aTHX))
170 #undef  PL_checkav
171 #define PL_checkav              (*Perl_Icheckav_ptr(aTHX))
172 #undef  PL_checkav_save
173 #define PL_checkav_save         (*Perl_Icheckav_save_ptr(aTHX))
174 #undef  PL_clocktick
175 #define PL_clocktick            (*Perl_Iclocktick_ptr(aTHX))
176 #undef  PL_collation_ix
177 #define PL_collation_ix         (*Perl_Icollation_ix_ptr(aTHX))
178 #undef  PL_collation_name
179 #define PL_collation_name       (*Perl_Icollation_name_ptr(aTHX))
180 #undef  PL_collation_standard
181 #define PL_collation_standard   (*Perl_Icollation_standard_ptr(aTHX))
182 #undef  PL_collxfrm_base
183 #define PL_collxfrm_base        (*Perl_Icollxfrm_base_ptr(aTHX))
184 #undef  PL_collxfrm_mult
185 #define PL_collxfrm_mult        (*Perl_Icollxfrm_mult_ptr(aTHX))
186 #undef  PL_compcv
187 #define PL_compcv               (*Perl_Icompcv_ptr(aTHX))
188 #undef  PL_compiling
189 #define PL_compiling            (*Perl_Icompiling_ptr(aTHX))
190 #undef  PL_comppad
191 #define PL_comppad              (*Perl_Icomppad_ptr(aTHX))
192 #undef  PL_comppad_name
193 #define PL_comppad_name         (*Perl_Icomppad_name_ptr(aTHX))
194 #undef  PL_comppad_name_fill
195 #define PL_comppad_name_fill    (*Perl_Icomppad_name_fill_ptr(aTHX))
196 #undef  PL_comppad_name_floor
197 #define PL_comppad_name_floor   (*Perl_Icomppad_name_floor_ptr(aTHX))
198 #undef  PL_cop_seqmax
199 #define PL_cop_seqmax           (*Perl_Icop_seqmax_ptr(aTHX))
200 #undef  PL_copline
201 #define PL_copline              (*Perl_Icopline_ptr(aTHX))
202 #undef  PL_cryptseen
203 #define PL_cryptseen            (*Perl_Icryptseen_ptr(aTHX))
204 #undef  PL_cshlen
205 #define PL_cshlen               (*Perl_Icshlen_ptr(aTHX))
206 #undef  PL_cshname
207 #define PL_cshname              (*Perl_Icshname_ptr(aTHX))
208 #undef  PL_curcopdb
209 #define PL_curcopdb             (*Perl_Icurcopdb_ptr(aTHX))
210 #undef  PL_curstname
211 #define PL_curstname            (*Perl_Icurstname_ptr(aTHX))
212 #undef  PL_custom_op_descs
213 #define PL_custom_op_descs      (*Perl_Icustom_op_descs_ptr(aTHX))
214 #undef  PL_custom_op_names
215 #define PL_custom_op_names      (*Perl_Icustom_op_names_ptr(aTHX))
216 #undef  PL_cv_has_eval
217 #define PL_cv_has_eval          (*Perl_Icv_has_eval_ptr(aTHX))
218 #undef  PL_dbargs
219 #define PL_dbargs               (*Perl_Idbargs_ptr(aTHX))
220 #undef  PL_debstash
221 #define PL_debstash             (*Perl_Idebstash_ptr(aTHX))
222 #undef  PL_debug
223 #define PL_debug                (*Perl_Idebug_ptr(aTHX))
224 #undef  PL_debug_pad
225 #define PL_debug_pad            (*Perl_Idebug_pad_ptr(aTHX))
226 #undef  PL_def_layerlist
227 #define PL_def_layerlist        (*Perl_Idef_layerlist_ptr(aTHX))
228 #undef  PL_defgv
229 #define PL_defgv                (*Perl_Idefgv_ptr(aTHX))
230 #undef  PL_diehook
231 #define PL_diehook              (*Perl_Idiehook_ptr(aTHX))
232 #undef  PL_doextract
233 #define PL_doextract            (*Perl_Idoextract_ptr(aTHX))
234 #undef  PL_doswitches
235 #define PL_doswitches           (*Perl_Idoswitches_ptr(aTHX))
236 #undef  PL_dowarn
237 #define PL_dowarn               (*Perl_Idowarn_ptr(aTHX))
238 #undef  PL_e_script
239 #define PL_e_script             (*Perl_Ie_script_ptr(aTHX))
240 #undef  PL_egid
241 #define PL_egid                 (*Perl_Iegid_ptr(aTHX))
242 #undef  PL_encoding
243 #define PL_encoding             (*Perl_Iencoding_ptr(aTHX))
244 #undef  PL_endav
245 #define PL_endav                (*Perl_Iendav_ptr(aTHX))
246 #undef  PL_envgv
247 #define PL_envgv                (*Perl_Ienvgv_ptr(aTHX))
248 #undef  PL_errgv
249 #define PL_errgv                (*Perl_Ierrgv_ptr(aTHX))
250 #undef  PL_error_count
251 #define PL_error_count          (*Perl_Ierror_count_ptr(aTHX))
252 #undef  PL_euid
253 #define PL_euid                 (*Perl_Ieuid_ptr(aTHX))
254 #undef  PL_eval_root
255 #define PL_eval_root            (*Perl_Ieval_root_ptr(aTHX))
256 #undef  PL_eval_start
257 #define PL_eval_start           (*Perl_Ieval_start_ptr(aTHX))
258 #undef  PL_evalseq
259 #define PL_evalseq              (*Perl_Ievalseq_ptr(aTHX))
260 #undef  PL_exit_flags
261 #define PL_exit_flags           (*Perl_Iexit_flags_ptr(aTHX))
262 #undef  PL_exitlist
263 #define PL_exitlist             (*Perl_Iexitlist_ptr(aTHX))
264 #undef  PL_exitlistlen
265 #define PL_exitlistlen          (*Perl_Iexitlistlen_ptr(aTHX))
266 #undef  PL_expect
267 #define PL_expect               (*Perl_Iexpect_ptr(aTHX))
268 #undef  PL_fdpid
269 #define PL_fdpid                (*Perl_Ifdpid_ptr(aTHX))
270 #undef  PL_fdscript
271 #define PL_fdscript             (*Perl_Ifdscript_ptr(aTHX))
272 #undef  PL_filemode
273 #define PL_filemode             (*Perl_Ifilemode_ptr(aTHX))
274 #undef  PL_forkprocess
275 #define PL_forkprocess          (*Perl_Iforkprocess_ptr(aTHX))
276 #undef  PL_formfeed
277 #define PL_formfeed             (*Perl_Iformfeed_ptr(aTHX))
278 #undef  PL_generation
279 #define PL_generation           (*Perl_Igeneration_ptr(aTHX))
280 #undef  PL_gensym
281 #define PL_gensym               (*Perl_Igensym_ptr(aTHX))
282 #undef  PL_gid
283 #define PL_gid                  (*Perl_Igid_ptr(aTHX))
284 #undef  PL_glob_index
285 #define PL_glob_index           (*Perl_Iglob_index_ptr(aTHX))
286 #undef  PL_globalstash
287 #define PL_globalstash          (*Perl_Iglobalstash_ptr(aTHX))
288 #undef  PL_hash_seed
289 #define PL_hash_seed            (*Perl_Ihash_seed_ptr(aTHX))
290 #undef  PL_hash_seed_set
291 #define PL_hash_seed_set        (*Perl_Ihash_seed_set_ptr(aTHX))
292 #undef  PL_he_arenaroot
293 #define PL_he_arenaroot         (*Perl_Ihe_arenaroot_ptr(aTHX))
294 #undef  PL_he_root
295 #define PL_he_root              (*Perl_Ihe_root_ptr(aTHX))
296 #undef  PL_hintgv
297 #define PL_hintgv               (*Perl_Ihintgv_ptr(aTHX))
298 #undef  PL_hints
299 #define PL_hints                (*Perl_Ihints_ptr(aTHX))
300 #undef  PL_in_clean_all
301 #define PL_in_clean_all         (*Perl_Iin_clean_all_ptr(aTHX))
302 #undef  PL_in_clean_objs
303 #define PL_in_clean_objs        (*Perl_Iin_clean_objs_ptr(aTHX))
304 #undef  PL_in_load_module
305 #define PL_in_load_module       (*Perl_Iin_load_module_ptr(aTHX))
306 #undef  PL_in_my
307 #define PL_in_my                (*Perl_Iin_my_ptr(aTHX))
308 #undef  PL_in_my_stash
309 #define PL_in_my_stash          (*Perl_Iin_my_stash_ptr(aTHX))
310 #undef  PL_incgv
311 #define PL_incgv                (*Perl_Iincgv_ptr(aTHX))
312 #undef  PL_initav
313 #define PL_initav               (*Perl_Iinitav_ptr(aTHX))
314 #undef  PL_inplace
315 #define PL_inplace              (*Perl_Iinplace_ptr(aTHX))
316 #undef  PL_known_layers
317 #define PL_known_layers         (*Perl_Iknown_layers_ptr(aTHX))
318 #undef  PL_last_lop
319 #define PL_last_lop             (*Perl_Ilast_lop_ptr(aTHX))
320 #undef  PL_last_lop_op
321 #define PL_last_lop_op          (*Perl_Ilast_lop_op_ptr(aTHX))
322 #undef  PL_last_swash_hv
323 #define PL_last_swash_hv        (*Perl_Ilast_swash_hv_ptr(aTHX))
324 #undef  PL_last_swash_key
325 #define PL_last_swash_key       (*Perl_Ilast_swash_key_ptr(aTHX))
326 #undef  PL_last_swash_klen
327 #define PL_last_swash_klen      (*Perl_Ilast_swash_klen_ptr(aTHX))
328 #undef  PL_last_swash_slen
329 #define PL_last_swash_slen      (*Perl_Ilast_swash_slen_ptr(aTHX))
330 #undef  PL_last_swash_tmps
331 #define PL_last_swash_tmps      (*Perl_Ilast_swash_tmps_ptr(aTHX))
332 #undef  PL_last_uni
333 #define PL_last_uni             (*Perl_Ilast_uni_ptr(aTHX))
334 #undef  PL_lastfd
335 #define PL_lastfd               (*Perl_Ilastfd_ptr(aTHX))
336 #undef  PL_laststatval
337 #define PL_laststatval          (*Perl_Ilaststatval_ptr(aTHX))
338 #undef  PL_laststype
339 #define PL_laststype            (*Perl_Ilaststype_ptr(aTHX))
340 #undef  PL_lex_brackets
341 #define PL_lex_brackets         (*Perl_Ilex_brackets_ptr(aTHX))
342 #undef  PL_lex_brackstack
343 #define PL_lex_brackstack       (*Perl_Ilex_brackstack_ptr(aTHX))
344 #undef  PL_lex_casemods
345 #define PL_lex_casemods         (*Perl_Ilex_casemods_ptr(aTHX))
346 #undef  PL_lex_casestack
347 #define PL_lex_casestack        (*Perl_Ilex_casestack_ptr(aTHX))
348 #undef  PL_lex_defer
349 #define PL_lex_defer            (*Perl_Ilex_defer_ptr(aTHX))
350 #undef  PL_lex_dojoin
351 #define PL_lex_dojoin           (*Perl_Ilex_dojoin_ptr(aTHX))
352 #undef  PL_lex_expect
353 #define PL_lex_expect           (*Perl_Ilex_expect_ptr(aTHX))
354 #undef  PL_lex_formbrack
355 #define PL_lex_formbrack        (*Perl_Ilex_formbrack_ptr(aTHX))
356 #undef  PL_lex_inpat
357 #define PL_lex_inpat            (*Perl_Ilex_inpat_ptr(aTHX))
358 #undef  PL_lex_inwhat
359 #define PL_lex_inwhat           (*Perl_Ilex_inwhat_ptr(aTHX))
360 #undef  PL_lex_op
361 #define PL_lex_op               (*Perl_Ilex_op_ptr(aTHX))
362 #undef  PL_lex_repl
363 #define PL_lex_repl             (*Perl_Ilex_repl_ptr(aTHX))
364 #undef  PL_lex_starts
365 #define PL_lex_starts           (*Perl_Ilex_starts_ptr(aTHX))
366 #undef  PL_lex_state
367 #define PL_lex_state            (*Perl_Ilex_state_ptr(aTHX))
368 #undef  PL_lex_stuff
369 #define PL_lex_stuff            (*Perl_Ilex_stuff_ptr(aTHX))
370 #undef  PL_lineary
371 #define PL_lineary              (*Perl_Ilineary_ptr(aTHX))
372 #undef  PL_linestart
373 #define PL_linestart            (*Perl_Ilinestart_ptr(aTHX))
374 #undef  PL_linestr
375 #define PL_linestr              (*Perl_Ilinestr_ptr(aTHX))
376 #undef  PL_localpatches
377 #define PL_localpatches         (*Perl_Ilocalpatches_ptr(aTHX))
378 #undef  PL_lockhook
379 #define PL_lockhook             (*Perl_Ilockhook_ptr(aTHX))
380 #undef  PL_main_cv
381 #define PL_main_cv              (*Perl_Imain_cv_ptr(aTHX))
382 #undef  PL_main_root
383 #define PL_main_root            (*Perl_Imain_root_ptr(aTHX))
384 #undef  PL_main_start
385 #define PL_main_start           (*Perl_Imain_start_ptr(aTHX))
386 #undef  PL_max_intro_pending
387 #define PL_max_intro_pending    (*Perl_Imax_intro_pending_ptr(aTHX))
388 #undef  PL_maxo
389 #define PL_maxo                 (*Perl_Imaxo_ptr(aTHX))
390 #undef  PL_maxsysfd
391 #define PL_maxsysfd             (*Perl_Imaxsysfd_ptr(aTHX))
392 #undef  PL_mess_sv
393 #define PL_mess_sv              (*Perl_Imess_sv_ptr(aTHX))
394 #undef  PL_min_intro_pending
395 #define PL_min_intro_pending    (*Perl_Imin_intro_pending_ptr(aTHX))
396 #undef  PL_minus_F
397 #define PL_minus_F              (*Perl_Iminus_F_ptr(aTHX))
398 #undef  PL_minus_a
399 #define PL_minus_a              (*Perl_Iminus_a_ptr(aTHX))
400 #undef  PL_minus_c
401 #define PL_minus_c              (*Perl_Iminus_c_ptr(aTHX))
402 #undef  PL_minus_l
403 #define PL_minus_l              (*Perl_Iminus_l_ptr(aTHX))
404 #undef  PL_minus_n
405 #define PL_minus_n              (*Perl_Iminus_n_ptr(aTHX))
406 #undef  PL_minus_p
407 #define PL_minus_p              (*Perl_Iminus_p_ptr(aTHX))
408 #undef  PL_modglobal
409 #define PL_modglobal            (*Perl_Imodglobal_ptr(aTHX))
410 #undef  PL_multi_close
411 #define PL_multi_close          (*Perl_Imulti_close_ptr(aTHX))
412 #undef  PL_multi_end
413 #define PL_multi_end            (*Perl_Imulti_end_ptr(aTHX))
414 #undef  PL_multi_open
415 #define PL_multi_open           (*Perl_Imulti_open_ptr(aTHX))
416 #undef  PL_multi_start
417 #define PL_multi_start          (*Perl_Imulti_start_ptr(aTHX))
418 #undef  PL_multiline
419 #define PL_multiline            (*Perl_Imultiline_ptr(aTHX))
420 #undef  PL_nexttoke
421 #define PL_nexttoke             (*Perl_Inexttoke_ptr(aTHX))
422 #undef  PL_nexttype
423 #define PL_nexttype             (*Perl_Inexttype_ptr(aTHX))
424 #undef  PL_nextval
425 #define PL_nextval              (*Perl_Inextval_ptr(aTHX))
426 #undef  PL_nice_chunk
427 #define PL_nice_chunk           (*Perl_Inice_chunk_ptr(aTHX))
428 #undef  PL_nice_chunk_size
429 #define PL_nice_chunk_size      (*Perl_Inice_chunk_size_ptr(aTHX))
430 #undef  PL_nomemok
431 #define PL_nomemok              (*Perl_Inomemok_ptr(aTHX))
432 #undef  PL_numeric_compat1
433 #define PL_numeric_compat1      (*Perl_Inumeric_compat1_ptr(aTHX))
434 #undef  PL_numeric_local
435 #define PL_numeric_local        (*Perl_Inumeric_local_ptr(aTHX))
436 #undef  PL_numeric_name
437 #define PL_numeric_name         (*Perl_Inumeric_name_ptr(aTHX))
438 #undef  PL_numeric_radix_sv
439 #define PL_numeric_radix_sv     (*Perl_Inumeric_radix_sv_ptr(aTHX))
440 #undef  PL_numeric_standard
441 #define PL_numeric_standard     (*Perl_Inumeric_standard_ptr(aTHX))
442 #undef  PL_ofmt
443 #define PL_ofmt                 (*Perl_Iofmt_ptr(aTHX))
444 #undef  PL_oldbufptr
445 #define PL_oldbufptr            (*Perl_Ioldbufptr_ptr(aTHX))
446 #undef  PL_oldname
447 #define PL_oldname              (*Perl_Ioldname_ptr(aTHX))
448 #undef  PL_oldoldbufptr
449 #define PL_oldoldbufptr         (*Perl_Ioldoldbufptr_ptr(aTHX))
450 #undef  PL_op_mask
451 #define PL_op_mask              (*Perl_Iop_mask_ptr(aTHX))
452 #undef  PL_origalen
453 #define PL_origalen             (*Perl_Iorigalen_ptr(aTHX))
454 #undef  PL_origargc
455 #define PL_origargc             (*Perl_Iorigargc_ptr(aTHX))
456 #undef  PL_origargv
457 #define PL_origargv             (*Perl_Iorigargv_ptr(aTHX))
458 #undef  PL_origenviron
459 #define PL_origenviron          (*Perl_Iorigenviron_ptr(aTHX))
460 #undef  PL_origfilename
461 #define PL_origfilename         (*Perl_Iorigfilename_ptr(aTHX))
462 #undef  PL_ors_sv
463 #define PL_ors_sv               (*Perl_Iors_sv_ptr(aTHX))
464 #undef  PL_osname
465 #define PL_osname               (*Perl_Iosname_ptr(aTHX))
466 #undef  PL_pad_reset_pending
467 #define PL_pad_reset_pending    (*Perl_Ipad_reset_pending_ptr(aTHX))
468 #undef  PL_padix
469 #define PL_padix                (*Perl_Ipadix_ptr(aTHX))
470 #undef  PL_padix_floor
471 #define PL_padix_floor          (*Perl_Ipadix_floor_ptr(aTHX))
472 #undef  PL_patchlevel
473 #define PL_patchlevel           (*Perl_Ipatchlevel_ptr(aTHX))
474 #undef  PL_pending_ident
475 #define PL_pending_ident        (*Perl_Ipending_ident_ptr(aTHX))
476 #undef  PL_perl_destruct_level
477 #define PL_perl_destruct_level  (*Perl_Iperl_destruct_level_ptr(aTHX))
478 #undef  PL_perldb
479 #define PL_perldb               (*Perl_Iperldb_ptr(aTHX))
480 #undef  PL_perlio
481 #define PL_perlio               (*Perl_Iperlio_ptr(aTHX))
482 #undef  PL_pidstatus
483 #define PL_pidstatus            (*Perl_Ipidstatus_ptr(aTHX))
484 #undef  PL_ppid
485 #define PL_ppid                 (*Perl_Ippid_ptr(aTHX))
486 #undef  PL_preambleav
487 #define PL_preambleav           (*Perl_Ipreambleav_ptr(aTHX))
488 #undef  PL_preambled
489 #define PL_preambled            (*Perl_Ipreambled_ptr(aTHX))
490 #undef  PL_preprocess
491 #define PL_preprocess           (*Perl_Ipreprocess_ptr(aTHX))
492 #undef  PL_profiledata
493 #define PL_profiledata          (*Perl_Iprofiledata_ptr(aTHX))
494 #undef  PL_psig_name
495 #define PL_psig_name            (*Perl_Ipsig_name_ptr(aTHX))
496 #undef  PL_psig_pend
497 #define PL_psig_pend            (*Perl_Ipsig_pend_ptr(aTHX))
498 #undef  PL_psig_ptr
499 #define PL_psig_ptr             (*Perl_Ipsig_ptr_ptr(aTHX))
500 #undef  PL_pte_arenaroot
501 #define PL_pte_arenaroot        (*Perl_Ipte_arenaroot_ptr(aTHX))
502 #undef  PL_pte_root
503 #define PL_pte_root             (*Perl_Ipte_root_ptr(aTHX))
504 #undef  PL_ptr_table
505 #define PL_ptr_table            (*Perl_Iptr_table_ptr(aTHX))
506 #undef  PL_reentrant_buffer
507 #define PL_reentrant_buffer     (*Perl_Ireentrant_buffer_ptr(aTHX))
508 #undef  PL_reentrant_retint
509 #define PL_reentrant_retint     (*Perl_Ireentrant_retint_ptr(aTHX))
510 #undef  PL_regex_pad
511 #define PL_regex_pad            (*Perl_Iregex_pad_ptr(aTHX))
512 #undef  PL_regex_padav
513 #define PL_regex_padav          (*Perl_Iregex_padav_ptr(aTHX))
514 #undef  PL_rehash_seed
515 #define PL_rehash_seed          (*Perl_Irehash_seed_ptr(aTHX))
516 #undef  PL_rehash_seed_set
517 #define PL_rehash_seed_set      (*Perl_Irehash_seed_set_ptr(aTHX))
518 #undef  PL_replgv
519 #define PL_replgv               (*Perl_Ireplgv_ptr(aTHX))
520 #undef  PL_rsfp
521 #define PL_rsfp                 (*Perl_Irsfp_ptr(aTHX))
522 #undef  PL_rsfp_filters
523 #define PL_rsfp_filters         (*Perl_Irsfp_filters_ptr(aTHX))
524 #undef  PL_runops
525 #define PL_runops               (*Perl_Irunops_ptr(aTHX))
526 #undef  PL_runops_dbg
527 #define PL_runops_dbg           (*Perl_Irunops_dbg_ptr(aTHX))
528 #undef  PL_runops_std
529 #define PL_runops_std           (*Perl_Irunops_std_ptr(aTHX))
530 #undef  PL_savebegin
531 #define PL_savebegin            (*Perl_Isavebegin_ptr(aTHX))
532 #undef  PL_sawampersand
533 #define PL_sawampersand         (*Perl_Isawampersand_ptr(aTHX))
534 #undef  PL_sh_path_compat
535 #define PL_sh_path_compat       (*Perl_Ish_path_compat_ptr(aTHX))
536 #undef  PL_shared_hek_table
537 #define PL_shared_hek_table     (*Perl_Ishared_hek_table_ptr(aTHX))
538 #undef  PL_sharehook
539 #define PL_sharehook            (*Perl_Isharehook_ptr(aTHX))
540 #undef  PL_sig_pending
541 #define PL_sig_pending          (*Perl_Isig_pending_ptr(aTHX))
542 #undef  PL_sighandlerp
543 #define PL_sighandlerp          (*Perl_Isighandlerp_ptr(aTHX))
544 #undef  PL_signals
545 #define PL_signals              (*Perl_Isignals_ptr(aTHX))
546 #undef  PL_sort_RealCmp
547 #define PL_sort_RealCmp         (*Perl_Isort_RealCmp_ptr(aTHX))
548 #undef  PL_splitstr
549 #define PL_splitstr             (*Perl_Isplitstr_ptr(aTHX))
550 #undef  PL_srand_called
551 #define PL_srand_called         (*Perl_Isrand_called_ptr(aTHX))
552 #undef  PL_stashcache
553 #define PL_stashcache           (*Perl_Istashcache_ptr(aTHX))
554 #undef  PL_statusvalue
555 #define PL_statusvalue          (*Perl_Istatusvalue_ptr(aTHX))
556 #undef  PL_statusvalue_posix
557 #define PL_statusvalue_posix    (*Perl_Istatusvalue_posix_ptr(aTHX))
558 #undef  PL_statusvalue_vms
559 #define PL_statusvalue_vms      (*Perl_Istatusvalue_vms_ptr(aTHX))
560 #undef  PL_stderrgv
561 #define PL_stderrgv             (*Perl_Istderrgv_ptr(aTHX))
562 #undef  PL_stdingv
563 #define PL_stdingv              (*Perl_Istdingv_ptr(aTHX))
564 #undef  PL_strtab
565 #define PL_strtab               (*Perl_Istrtab_ptr(aTHX))
566 #undef  PL_sub_generation
567 #define PL_sub_generation       (*Perl_Isub_generation_ptr(aTHX))
568 #undef  PL_sublex_info
569 #define PL_sublex_info          (*Perl_Isublex_info_ptr(aTHX))
570 #undef  PL_subline
571 #define PL_subline              (*Perl_Isubline_ptr(aTHX))
572 #undef  PL_subname
573 #define PL_subname              (*Perl_Isubname_ptr(aTHX))
574 #undef  PL_suidscript
575 #define PL_suidscript           (*Perl_Isuidscript_ptr(aTHX))
576 #undef  PL_sv_arenaroot
577 #define PL_sv_arenaroot         (*Perl_Isv_arenaroot_ptr(aTHX))
578 #undef  PL_sv_count
579 #define PL_sv_count             (*Perl_Isv_count_ptr(aTHX))
580 #undef  PL_sv_no
581 #define PL_sv_no                (*Perl_Isv_no_ptr(aTHX))
582 #undef  PL_sv_objcount
583 #define PL_sv_objcount          (*Perl_Isv_objcount_ptr(aTHX))
584 #undef  PL_sv_root
585 #define PL_sv_root              (*Perl_Isv_root_ptr(aTHX))
586 #undef  PL_sv_undef
587 #define PL_sv_undef             (*Perl_Isv_undef_ptr(aTHX))
588 #undef  PL_sv_yes
589 #define PL_sv_yes               (*Perl_Isv_yes_ptr(aTHX))
590 #undef  PL_sys_intern
591 #define PL_sys_intern           (*Perl_Isys_intern_ptr(aTHX))
592 #undef  PL_taint_warn
593 #define PL_taint_warn           (*Perl_Itaint_warn_ptr(aTHX))
594 #undef  PL_tainting
595 #define PL_tainting             (*Perl_Itainting_ptr(aTHX))
596 #undef  PL_threadhook
597 #define PL_threadhook           (*Perl_Ithreadhook_ptr(aTHX))
598 #undef  PL_tokenbuf
599 #define PL_tokenbuf             (*Perl_Itokenbuf_ptr(aTHX))
600 #undef  PL_uid
601 #define PL_uid                  (*Perl_Iuid_ptr(aTHX))
602 #undef  PL_unicode
603 #define PL_unicode              (*Perl_Iunicode_ptr(aTHX))
604 #undef  PL_unlockhook
605 #define PL_unlockhook           (*Perl_Iunlockhook_ptr(aTHX))
606 #undef  PL_unsafe
607 #define PL_unsafe               (*Perl_Iunsafe_ptr(aTHX))
608 #undef  PL_utf8_alnum
609 #define PL_utf8_alnum           (*Perl_Iutf8_alnum_ptr(aTHX))
610 #undef  PL_utf8_alnumc
611 #define PL_utf8_alnumc          (*Perl_Iutf8_alnumc_ptr(aTHX))
612 #undef  PL_utf8_alpha
613 #define PL_utf8_alpha           (*Perl_Iutf8_alpha_ptr(aTHX))
614 #undef  PL_utf8_ascii
615 #define PL_utf8_ascii           (*Perl_Iutf8_ascii_ptr(aTHX))
616 #undef  PL_utf8_cntrl
617 #define PL_utf8_cntrl           (*Perl_Iutf8_cntrl_ptr(aTHX))
618 #undef  PL_utf8_digit
619 #define PL_utf8_digit           (*Perl_Iutf8_digit_ptr(aTHX))
620 #undef  PL_utf8_graph
621 #define PL_utf8_graph           (*Perl_Iutf8_graph_ptr(aTHX))
622 #undef  PL_utf8_idcont
623 #define PL_utf8_idcont          (*Perl_Iutf8_idcont_ptr(aTHX))
624 #undef  PL_utf8_idstart
625 #define PL_utf8_idstart         (*Perl_Iutf8_idstart_ptr(aTHX))
626 #undef  PL_utf8_lower
627 #define PL_utf8_lower           (*Perl_Iutf8_lower_ptr(aTHX))
628 #undef  PL_utf8_mark
629 #define PL_utf8_mark            (*Perl_Iutf8_mark_ptr(aTHX))
630 #undef  PL_utf8_print
631 #define PL_utf8_print           (*Perl_Iutf8_print_ptr(aTHX))
632 #undef  PL_utf8_punct
633 #define PL_utf8_punct           (*Perl_Iutf8_punct_ptr(aTHX))
634 #undef  PL_utf8_space
635 #define PL_utf8_space           (*Perl_Iutf8_space_ptr(aTHX))
636 #undef  PL_utf8_tofold
637 #define PL_utf8_tofold          (*Perl_Iutf8_tofold_ptr(aTHX))
638 #undef  PL_utf8_tolower
639 #define PL_utf8_tolower         (*Perl_Iutf8_tolower_ptr(aTHX))
640 #undef  PL_utf8_totitle
641 #define PL_utf8_totitle         (*Perl_Iutf8_totitle_ptr(aTHX))
642 #undef  PL_utf8_toupper
643 #define PL_utf8_toupper         (*Perl_Iutf8_toupper_ptr(aTHX))
644 #undef  PL_utf8_upper
645 #define PL_utf8_upper           (*Perl_Iutf8_upper_ptr(aTHX))
646 #undef  PL_utf8_xdigit
647 #define PL_utf8_xdigit          (*Perl_Iutf8_xdigit_ptr(aTHX))
648 #undef  PL_utf8locale
649 #define PL_utf8locale           (*Perl_Iutf8locale_ptr(aTHX))
650 #undef  PL_uudmap
651 #define PL_uudmap               (*Perl_Iuudmap_ptr(aTHX))
652 #undef  PL_warnhook
653 #define PL_warnhook             (*Perl_Iwarnhook_ptr(aTHX))
654 #undef  PL_widesyscalls
655 #define PL_widesyscalls         (*Perl_Iwidesyscalls_ptr(aTHX))
656 #undef  PL_xnv_arenaroot
657 #define PL_xnv_arenaroot        (*Perl_Ixnv_arenaroot_ptr(aTHX))
658 #undef  PL_xnv_root
659 #define PL_xnv_root             (*Perl_Ixnv_root_ptr(aTHX))
660 #undef  PL_xpv_arenaroot
661 #define PL_xpv_arenaroot        (*Perl_Ixpv_arenaroot_ptr(aTHX))
662 #undef  PL_xpv_root
663 #define PL_xpv_root             (*Perl_Ixpv_root_ptr(aTHX))
664 #undef  PL_xpvav_arenaroot
665 #define PL_xpvav_arenaroot      (*Perl_Ixpvav_arenaroot_ptr(aTHX))
666 #undef  PL_xpvav_root
667 #define PL_xpvav_root           (*Perl_Ixpvav_root_ptr(aTHX))
668 #undef  PL_xpvbm_arenaroot
669 #define PL_xpvbm_arenaroot      (*Perl_Ixpvbm_arenaroot_ptr(aTHX))
670 #undef  PL_xpvbm_root
671 #define PL_xpvbm_root           (*Perl_Ixpvbm_root_ptr(aTHX))
672 #undef  PL_xpvcv_arenaroot
673 #define PL_xpvcv_arenaroot      (*Perl_Ixpvcv_arenaroot_ptr(aTHX))
674 #undef  PL_xpvcv_root
675 #define PL_xpvcv_root           (*Perl_Ixpvcv_root_ptr(aTHX))
676 #undef  PL_xpvgv_arenaroot
677 #define PL_xpvgv_arenaroot      (*Perl_Ixpvgv_arenaroot_ptr(aTHX))
678 #undef  PL_xpvgv_root
679 #define PL_xpvgv_root           (*Perl_Ixpvgv_root_ptr(aTHX))
680 #undef  PL_xpvhv_arenaroot
681 #define PL_xpvhv_arenaroot      (*Perl_Ixpvhv_arenaroot_ptr(aTHX))
682 #undef  PL_xpvhv_root
683 #define PL_xpvhv_root           (*Perl_Ixpvhv_root_ptr(aTHX))
684 #undef  PL_xpviv_arenaroot
685 #define PL_xpviv_arenaroot      (*Perl_Ixpviv_arenaroot_ptr(aTHX))
686 #undef  PL_xpviv_root
687 #define PL_xpviv_root           (*Perl_Ixpviv_root_ptr(aTHX))
688 #undef  PL_xpvlv_arenaroot
689 #define PL_xpvlv_arenaroot      (*Perl_Ixpvlv_arenaroot_ptr(aTHX))
690 #undef  PL_xpvlv_root
691 #define PL_xpvlv_root           (*Perl_Ixpvlv_root_ptr(aTHX))
692 #undef  PL_xpvmg_arenaroot
693 #define PL_xpvmg_arenaroot      (*Perl_Ixpvmg_arenaroot_ptr(aTHX))
694 #undef  PL_xpvmg_root
695 #define PL_xpvmg_root           (*Perl_Ixpvmg_root_ptr(aTHX))
696 #undef  PL_xpvnv_arenaroot
697 #define PL_xpvnv_arenaroot      (*Perl_Ixpvnv_arenaroot_ptr(aTHX))
698 #undef  PL_xpvnv_root
699 #define PL_xpvnv_root           (*Perl_Ixpvnv_root_ptr(aTHX))
700 #undef  PL_yycharp
701 #define PL_yycharp              (*Perl_Iyycharp_ptr(aTHX))
702 #undef  PL_yylvalp
703 #define PL_yylvalp              (*Perl_Iyylvalp_ptr(aTHX))
704 #undef  PL_Sv
705 #define PL_Sv                   (*Perl_TSv_ptr(aTHX))
706 #undef  PL_Xpv
707 #define PL_Xpv                  (*Perl_TXpv_ptr(aTHX))
708 #undef  PL_av_fetch_sv
709 #define PL_av_fetch_sv          (*Perl_Tav_fetch_sv_ptr(aTHX))
710 #undef  PL_bodytarget
711 #define PL_bodytarget           (*Perl_Tbodytarget_ptr(aTHX))
712 #undef  PL_bostr
713 #define PL_bostr                (*Perl_Tbostr_ptr(aTHX))
714 #undef  PL_chopset
715 #define PL_chopset              (*Perl_Tchopset_ptr(aTHX))
716 #undef  PL_colors
717 #define PL_colors               (*Perl_Tcolors_ptr(aTHX))
718 #undef  PL_colorset
719 #define PL_colorset             (*Perl_Tcolorset_ptr(aTHX))
720 #undef  PL_curcop
721 #define PL_curcop               (*Perl_Tcurcop_ptr(aTHX))
722 #undef  PL_curpad
723 #define PL_curpad               (*Perl_Tcurpad_ptr(aTHX))
724 #undef  PL_curpm
725 #define PL_curpm                (*Perl_Tcurpm_ptr(aTHX))
726 #undef  PL_curstack
727 #define PL_curstack             (*Perl_Tcurstack_ptr(aTHX))
728 #undef  PL_curstackinfo
729 #define PL_curstackinfo         (*Perl_Tcurstackinfo_ptr(aTHX))
730 #undef  PL_curstash
731 #define PL_curstash             (*Perl_Tcurstash_ptr(aTHX))
732 #undef  PL_defoutgv
733 #define PL_defoutgv             (*Perl_Tdefoutgv_ptr(aTHX))
734 #undef  PL_defstash
735 #define PL_defstash             (*Perl_Tdefstash_ptr(aTHX))
736 #undef  PL_delaymagic
737 #define PL_delaymagic           (*Perl_Tdelaymagic_ptr(aTHX))
738 #undef  PL_dirty
739 #define PL_dirty                (*Perl_Tdirty_ptr(aTHX))
740 #undef  PL_dumpindent
741 #define PL_dumpindent           (*Perl_Tdumpindent_ptr(aTHX))
742 #undef  PL_efloatbuf
743 #define PL_efloatbuf            (*Perl_Tefloatbuf_ptr(aTHX))
744 #undef  PL_efloatsize
745 #define PL_efloatsize           (*Perl_Tefloatsize_ptr(aTHX))
746 #undef  PL_errors
747 #define PL_errors               (*Perl_Terrors_ptr(aTHX))
748 #undef  PL_firstgv
749 #define PL_firstgv              (*Perl_Tfirstgv_ptr(aTHX))
750 #undef  PL_formtarget
751 #define PL_formtarget           (*Perl_Tformtarget_ptr(aTHX))
752 #undef  PL_hv_fetch_ent_mh
753 #define PL_hv_fetch_ent_mh      (*Perl_Thv_fetch_ent_mh_ptr(aTHX))
754 #undef  PL_hv_fetch_sv
755 #define PL_hv_fetch_sv          (*Perl_Thv_fetch_sv_ptr(aTHX))
756 #undef  PL_in_eval
757 #define PL_in_eval              (*Perl_Tin_eval_ptr(aTHX))
758 #undef  PL_last_in_gv
759 #define PL_last_in_gv           (*Perl_Tlast_in_gv_ptr(aTHX))
760 #undef  PL_lastgotoprobe
761 #define PL_lastgotoprobe        (*Perl_Tlastgotoprobe_ptr(aTHX))
762 #undef  PL_lastscream
763 #define PL_lastscream           (*Perl_Tlastscream_ptr(aTHX))
764 #undef  PL_localizing
765 #define PL_localizing           (*Perl_Tlocalizing_ptr(aTHX))
766 #undef  PL_mainstack
767 #define PL_mainstack            (*Perl_Tmainstack_ptr(aTHX))
768 #undef  PL_markstack
769 #define PL_markstack            (*Perl_Tmarkstack_ptr(aTHX))
770 #undef  PL_markstack_max
771 #define PL_markstack_max        (*Perl_Tmarkstack_max_ptr(aTHX))
772 #undef  PL_markstack_ptr
773 #define PL_markstack_ptr        (*Perl_Tmarkstack_ptr_ptr(aTHX))
774 #undef  PL_maxscream
775 #define PL_maxscream            (*Perl_Tmaxscream_ptr(aTHX))
776 #undef  PL_modcount
777 #define PL_modcount             (*Perl_Tmodcount_ptr(aTHX))
778 #undef  PL_na
779 #define PL_na                   (*Perl_Tna_ptr(aTHX))
780 #undef  PL_nrs
781 #define PL_nrs                  (*Perl_Tnrs_ptr(aTHX))
782 #undef  PL_ofs_sv
783 #define PL_ofs_sv               (*Perl_Tofs_sv_ptr(aTHX))
784 #undef  PL_op
785 #define PL_op                   (*Perl_Top_ptr(aTHX))
786 #undef  PL_opsave
787 #define PL_opsave               (*Perl_Topsave_ptr(aTHX))
788 #undef  PL_peepp
789 #define PL_peepp                (*Perl_Tpeepp_ptr(aTHX))
790 #undef  PL_reg_call_cc
791 #define PL_reg_call_cc          (*Perl_Treg_call_cc_ptr(aTHX))
792 #undef  PL_reg_curpm
793 #define PL_reg_curpm            (*Perl_Treg_curpm_ptr(aTHX))
794 #undef  PL_reg_eval_set
795 #define PL_reg_eval_set         (*Perl_Treg_eval_set_ptr(aTHX))
796 #undef  PL_reg_flags
797 #define PL_reg_flags            (*Perl_Treg_flags_ptr(aTHX))
798 #undef  PL_reg_ganch
799 #define PL_reg_ganch            (*Perl_Treg_ganch_ptr(aTHX))
800 #undef  PL_reg_leftiter
801 #define PL_reg_leftiter         (*Perl_Treg_leftiter_ptr(aTHX))
802 #undef  PL_reg_magic
803 #define PL_reg_magic            (*Perl_Treg_magic_ptr(aTHX))
804 #undef  PL_reg_match_utf8
805 #define PL_reg_match_utf8       (*Perl_Treg_match_utf8_ptr(aTHX))
806 #undef  PL_reg_maxiter
807 #define PL_reg_maxiter          (*Perl_Treg_maxiter_ptr(aTHX))
808 #undef  PL_reg_oldcurpm
809 #define PL_reg_oldcurpm         (*Perl_Treg_oldcurpm_ptr(aTHX))
810 #undef  PL_reg_oldpos
811 #define PL_reg_oldpos           (*Perl_Treg_oldpos_ptr(aTHX))
812 #undef  PL_reg_oldsaved
813 #define PL_reg_oldsaved         (*Perl_Treg_oldsaved_ptr(aTHX))
814 #undef  PL_reg_oldsavedlen
815 #define PL_reg_oldsavedlen      (*Perl_Treg_oldsavedlen_ptr(aTHX))
816 #undef  PL_reg_poscache
817 #define PL_reg_poscache         (*Perl_Treg_poscache_ptr(aTHX))
818 #undef  PL_reg_poscache_size
819 #define PL_reg_poscache_size    (*Perl_Treg_poscache_size_ptr(aTHX))
820 #undef  PL_reg_re
821 #define PL_reg_re               (*Perl_Treg_re_ptr(aTHX))
822 #undef  PL_reg_start_tmp
823 #define PL_reg_start_tmp        (*Perl_Treg_start_tmp_ptr(aTHX))
824 #undef  PL_reg_start_tmpl
825 #define PL_reg_start_tmpl       (*Perl_Treg_start_tmpl_ptr(aTHX))
826 #undef  PL_reg_starttry
827 #define PL_reg_starttry         (*Perl_Treg_starttry_ptr(aTHX))
828 #undef  PL_reg_sv
829 #define PL_reg_sv               (*Perl_Treg_sv_ptr(aTHX))
830 #undef  PL_regbol
831 #define PL_regbol               (*Perl_Tregbol_ptr(aTHX))
832 #undef  PL_regcc
833 #define PL_regcc                (*Perl_Tregcc_ptr(aTHX))
834 #undef  PL_regcompp
835 #define PL_regcompp             (*Perl_Tregcompp_ptr(aTHX))
836 #undef  PL_regdata
837 #define PL_regdata              (*Perl_Tregdata_ptr(aTHX))
838 #undef  PL_regdummy
839 #define PL_regdummy             (*Perl_Tregdummy_ptr(aTHX))
840 #undef  PL_regendp
841 #define PL_regendp              (*Perl_Tregendp_ptr(aTHX))
842 #undef  PL_regeol
843 #define PL_regeol               (*Perl_Tregeol_ptr(aTHX))
844 #undef  PL_regexecp
845 #define PL_regexecp             (*Perl_Tregexecp_ptr(aTHX))
846 #undef  PL_regfree
847 #define PL_regfree              (*Perl_Tregfree_ptr(aTHX))
848 #undef  PL_regindent
849 #define PL_regindent            (*Perl_Tregindent_ptr(aTHX))
850 #undef  PL_reginput
851 #define PL_reginput             (*Perl_Treginput_ptr(aTHX))
852 #undef  PL_regint_start
853 #define PL_regint_start         (*Perl_Tregint_start_ptr(aTHX))
854 #undef  PL_regint_string
855 #define PL_regint_string        (*Perl_Tregint_string_ptr(aTHX))
856 #undef  PL_reginterp_cnt
857 #define PL_reginterp_cnt        (*Perl_Treginterp_cnt_ptr(aTHX))
858 #undef  PL_reglastcloseparen
859 #define PL_reglastcloseparen    (*Perl_Treglastcloseparen_ptr(aTHX))
860 #undef  PL_reglastparen
861 #define PL_reglastparen         (*Perl_Treglastparen_ptr(aTHX))
862 #undef  PL_regnarrate
863 #define PL_regnarrate           (*Perl_Tregnarrate_ptr(aTHX))
864 #undef  PL_regnpar
865 #define PL_regnpar              (*Perl_Tregnpar_ptr(aTHX))
866 #undef  PL_regprecomp
867 #define PL_regprecomp           (*Perl_Tregprecomp_ptr(aTHX))
868 #undef  PL_regprogram
869 #define PL_regprogram           (*Perl_Tregprogram_ptr(aTHX))
870 #undef  PL_regsize
871 #define PL_regsize              (*Perl_Tregsize_ptr(aTHX))
872 #undef  PL_regstartp
873 #define PL_regstartp            (*Perl_Tregstartp_ptr(aTHX))
874 #undef  PL_regtill
875 #define PL_regtill              (*Perl_Tregtill_ptr(aTHX))
876 #undef  PL_restartop
877 #define PL_restartop            (*Perl_Trestartop_ptr(aTHX))
878 #undef  PL_rs
879 #define PL_rs                   (*Perl_Trs_ptr(aTHX))
880 #undef  PL_savestack
881 #define PL_savestack            (*Perl_Tsavestack_ptr(aTHX))
882 #undef  PL_savestack_ix
883 #define PL_savestack_ix         (*Perl_Tsavestack_ix_ptr(aTHX))
884 #undef  PL_savestack_max
885 #define PL_savestack_max        (*Perl_Tsavestack_max_ptr(aTHX))
886 #undef  PL_scopestack
887 #define PL_scopestack           (*Perl_Tscopestack_ptr(aTHX))
888 #undef  PL_scopestack_ix
889 #define PL_scopestack_ix        (*Perl_Tscopestack_ix_ptr(aTHX))
890 #undef  PL_scopestack_max
891 #define PL_scopestack_max       (*Perl_Tscopestack_max_ptr(aTHX))
892 #undef  PL_screamfirst
893 #define PL_screamfirst          (*Perl_Tscreamfirst_ptr(aTHX))
894 #undef  PL_screamnext
895 #define PL_screamnext           (*Perl_Tscreamnext_ptr(aTHX))
896 #undef  PL_secondgv
897 #define PL_secondgv             (*Perl_Tsecondgv_ptr(aTHX))
898 #undef  PL_sortcop
899 #define PL_sortcop              (*Perl_Tsortcop_ptr(aTHX))
900 #undef  PL_sortcxix
901 #define PL_sortcxix             (*Perl_Tsortcxix_ptr(aTHX))
902 #undef  PL_sortstash
903 #define PL_sortstash            (*Perl_Tsortstash_ptr(aTHX))
904 #undef  PL_stack_base
905 #define PL_stack_base           (*Perl_Tstack_base_ptr(aTHX))
906 #undef  PL_stack_max
907 #define PL_stack_max            (*Perl_Tstack_max_ptr(aTHX))
908 #undef  PL_stack_sp
909 #define PL_stack_sp             (*Perl_Tstack_sp_ptr(aTHX))
910 #undef  PL_start_env
911 #define PL_start_env            (*Perl_Tstart_env_ptr(aTHX))
912 #undef  PL_statbuf
913 #define PL_statbuf              (*Perl_Tstatbuf_ptr(aTHX))
914 #undef  PL_statcache
915 #define PL_statcache            (*Perl_Tstatcache_ptr(aTHX))
916 #undef  PL_statgv
917 #define PL_statgv               (*Perl_Tstatgv_ptr(aTHX))
918 #undef  PL_statname
919 #define PL_statname             (*Perl_Tstatname_ptr(aTHX))
920 #undef  PL_tainted
921 #define PL_tainted              (*Perl_Ttainted_ptr(aTHX))
922 #undef  PL_timesbuf
923 #define PL_timesbuf             (*Perl_Ttimesbuf_ptr(aTHX))
924 #undef  PL_tmps_floor
925 #define PL_tmps_floor           (*Perl_Ttmps_floor_ptr(aTHX))
926 #undef  PL_tmps_ix
927 #define PL_tmps_ix              (*Perl_Ttmps_ix_ptr(aTHX))
928 #undef  PL_tmps_max
929 #define PL_tmps_max             (*Perl_Ttmps_max_ptr(aTHX))
930 #undef  PL_tmps_stack
931 #define PL_tmps_stack           (*Perl_Ttmps_stack_ptr(aTHX))
932 #undef  PL_top_env
933 #define PL_top_env              (*Perl_Ttop_env_ptr(aTHX))
934 #undef  PL_toptarget
935 #define PL_toptarget            (*Perl_Ttoptarget_ptr(aTHX))
936 #undef  PL_watchaddr
937 #define PL_watchaddr            (*Perl_Twatchaddr_ptr(aTHX))
938 #undef  PL_watchok
939 #define PL_watchok              (*Perl_Twatchok_ptr(aTHX))
940 #undef  PL_No
941 #define PL_No                   (*Perl_GNo_ptr(NULL))
942 #undef  PL_Yes
943 #define PL_Yes                  (*Perl_GYes_ptr(NULL))
944 #undef  PL_appctx
945 #define PL_appctx               (*Perl_Gappctx_ptr(NULL))
946 #undef  PL_check
947 #define PL_check                (*Perl_Gcheck_ptr(NULL))
948 #undef  PL_csighandlerp
949 #define PL_csighandlerp         (*Perl_Gcsighandlerp_ptr(NULL))
950 #undef  PL_curinterp
951 #define PL_curinterp            (*Perl_Gcurinterp_ptr(NULL))
952 #undef  PL_do_undump
953 #define PL_do_undump            (*Perl_Gdo_undump_ptr(NULL))
954 #undef  PL_dollarzero_mutex
955 #define PL_dollarzero_mutex     (*Perl_Gdollarzero_mutex_ptr(NULL))
956 #undef  PL_fold_locale
957 #define PL_fold_locale          (*Perl_Gfold_locale_ptr(NULL))
958 #undef  PL_hexdigit
959 #define PL_hexdigit             (*Perl_Ghexdigit_ptr(NULL))
960 #undef  PL_malloc_mutex
961 #define PL_malloc_mutex         (*Perl_Gmalloc_mutex_ptr(NULL))
962 #undef  PL_mmap_page_size
963 #define PL_mmap_page_size       (*Perl_Gmmap_page_size_ptr(NULL))
964 #undef  PL_op_mutex
965 #define PL_op_mutex             (*Perl_Gop_mutex_ptr(NULL))
966 #undef  PL_op_seq
967 #define PL_op_seq               (*Perl_Gop_seq_ptr(NULL))
968 #undef  PL_op_sequence
969 #define PL_op_sequence          (*Perl_Gop_sequence_ptr(NULL))
970 #undef  PL_patleave
971 #define PL_patleave             (*Perl_Gpatleave_ptr(NULL))
972 #undef  PL_perlio_debug_fd
973 #define PL_perlio_debug_fd      (*Perl_Gperlio_debug_fd_ptr(NULL))
974 #undef  PL_perlio_fd_refcnt
975 #define PL_perlio_fd_refcnt     (*Perl_Gperlio_fd_refcnt_ptr(NULL))
976 #undef  PL_ppaddr
977 #define PL_ppaddr               (*Perl_Gppaddr_ptr(NULL))
978 #undef  PL_sh_path
979 #define PL_sh_path              (*Perl_Gsh_path_ptr(NULL))
980 #undef  PL_sig_defaulting
981 #define PL_sig_defaulting       (*Perl_Gsig_defaulting_ptr(NULL))
982 #undef  PL_sig_handlers_initted
983 #define PL_sig_handlers_initted (*Perl_Gsig_handlers_initted_ptr(NULL))
984 #undef  PL_sig_ignoring
985 #define PL_sig_ignoring         (*Perl_Gsig_ignoring_ptr(NULL))
986 #undef  PL_sig_sv
987 #define PL_sig_sv               (*Perl_Gsig_sv_ptr(NULL))
988 #undef  PL_sig_trapped
989 #define PL_sig_trapped          (*Perl_Gsig_trapped_ptr(NULL))
990 #undef  PL_sigfpe_saved
991 #define PL_sigfpe_saved         (*Perl_Gsigfpe_saved_ptr(NULL))
992 #undef  PL_sv_placeholder
993 #define PL_sv_placeholder       (*Perl_Gsv_placeholder_ptr(NULL))
994 #undef  PL_thr_key
995 #define PL_thr_key              (*Perl_Gthr_key_ptr(NULL))
996 #undef  PL_timesbase
997 #define PL_timesbase            (*Perl_Gtimesbase_ptr(NULL))
998 #undef  PL_use_safe_putenv
999 #define PL_use_safe_putenv      (*Perl_Guse_safe_putenv_ptr(NULL))
1000 #undef  PL_watch_pvx
1001 #define PL_watch_pvx            (*Perl_Gwatch_pvx_ptr(NULL))
1002
1003 #endif /* !PERL_CORE */
1004 #endif /* MULTIPLICITY */
1005
1006 #endif /* __perlapi_h__ */
1007
1008 /* ex: set ro: */