/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/time64.h (1576B)
#include #include "time64_config.h" #ifndef TIME64_H # define TIME64_H /* Set our custom types */ typedef INT_64_T Int64; typedef Int64 Time64_T; typedef I32 Year; /* A copy of the tm struct but with a 64 bit year */ struct TM64 { int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon; Year tm_year; int tm_wday; int tm_yday; int tm_isdst; #ifdef HAS_TM_TM_GMTOFF long tm_gmtoff; #endif #ifdef HAS_TM_TM_ZONE /* If glibc is defined or we are on QNX, use const. * Otherwise, if we are on android, use const but * not with g++. */ # if defined(__GLIBC__) || (defined(__ANDROID__) && !defined(__cplusplus)) \ || defined(__QNX__) || defined(__CYGWIN__) const # endif char *tm_zone; #endif }; /* Decide which tm struct to use */ #ifdef USE_TM64 #define TM TM64 #else #define TM tm #endif /* Declare functions */ struct TM *Perl_gmtime64_r (const Time64_T *, struct TM *); struct TM *Perl_localtime64_r (const Time64_T *, struct TM *); /* Not everyone has gm/localtime_r(), provide a replacement */ #ifdef HAS_LOCALTIME_R # define LOCALTIME_R(clock, result) (L_R_TZSET localtime_r(clock, result)) #else # define LOCALTIME_R(clock, result) (L_R_TZSET S_localtime_r(clock, result)) #endif #ifdef HAS_GMTIME_R # define GMTIME_R(clock, result) gmtime_r(clock, result) #else # define GMTIME_R(clock, result) S_gmtime_r(clock, result) #endif #endif