/usr/lib64/perl5/CORE
NameSizeModeActions
av.h33200644editdlrm
bitcount.h8500644editdlrm
charclass_invlists.h9724770644editdlrm
config.h1675830644editdlrm
cop.h395360644editdlrm
cv.h120420644editdlrm
dosish.h55010644editdlrm
dquote_inline.h18430644editdlrm
ebcdic_tables.h298560644editdlrm
embed.h973510644editdlrm
embedvar.h189100644editdlrm
EXTERN.h17140644editdlrm
fakesdio.h32110644editdlrm
feature.h49150644editdlrm
form.h14630644editdlrm
git_version.h3570644editdlrm
gv.h107110644editdlrm
handy.h1233490644editdlrm
hv.h255710644editdlrm
hv_func.h134130644editdlrm
inline.h464840644editdlrm
INTERN.h12710644editdlrm
intrpvar.h294770644editdlrm
invlist_inline.h27500644editdlrm
iperlsys.h488060644editdlrm
keywords.h65870644editdlrm
l1_char_class_tab.h1269180644editdlrm
libperl.so21811440755editdlrm
malloc_ctl.h15120644editdlrm
metaconfig.h6740644editdlrm
mg.h30130644editdlrm
mg_data.h49240644editdlrm
mg_raw.h42570644editdlrm
mg_vtable.h93360644editdlrm
mydtrace.h16930644editdlrm
nostdio.h33920644editdlrm
op.h364190644editdlrm
opcode.h918870644editdlrm
opnames.h88360644editdlrm
op_reg_common.h59110644editdlrm
overload.h32760644editdlrm
pad.h172460644editdlrm
parser.h69140644editdlrm
patchlevel.h99360644editdlrm
perl.h2432370644editdlrm
perlapi.h58630644editdlrm
perldtrace.h33010644editdlrm
perlio.h94640644editdlrm
perliol.h137610644editdlrm
perlsdio.h5270644editdlrm
perlvars.h96900644editdlrm
perly.h43710644editdlrm
pp.h275770644editdlrm
pp_proto.h120860644editdlrm
proto.h2467620644editdlrm
reentr.h782700644editdlrm
regcharclass.h1445820644editdlrm
regcomp.h477960644editdlrm
regexp.h343790644editdlrm
regnodes.h358340644editdlrm
scope.h119050644editdlrm
sv.h842560644editdlrm
thread.h120130644editdlrm
time64.h15760644editdlrm
time64_config.h20300644editdlrm
uconfig.h1671290644editdlrm
unicode_constants.h79900644editdlrm
unixish.h51070644editdlrm
utf8.h591110644editdlrm
utfebcdic.h673020644editdlrm
util.h96000644editdlrm
uudmap.h9040644editdlrm
vutil.h74670644editdlrm
warnings.h78160644editdlrm
XSUB.h244470644editdlrm
Edit: /usr/lib64/perl5/CORE/INTERN.h (1271B)
/* INTERN.h * * Copyright (C) 1991, 1992, 1993, 1995, 1996, 1998, 2000, 2001, * by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. * */ /* * EXT designates a global var which is defined in perl.h * dEXT designates a global var which is defined in another * file, so we can't count on finding it in perl.h * (this practice should be avoided). */ #undef EXT #undef dEXT #undef EXTCONST #undef dEXTCONST # if (defined(WIN32) && defined(__MINGW32__)) || defined(__SYMBIAN32__) # ifdef __cplusplus # define EXT __declspec(dllexport) # define dEXT # define EXTCONST __declspec(dllexport) extern const # define dEXTCONST const # else # define EXT __declspec(dllexport) # define dEXT # define EXTCONST __declspec(dllexport) const # define dEXTCONST const # endif # else # ifdef __cplusplus # define EXT # define dEXT # define EXTCONST EXTERN_C const # define dEXTCONST const # else # define EXT # define dEXT # define EXTCONST const # define dEXTCONST const # endif # endif #undef INIT #define INIT(x) = x #define DOINIT