SM0 She11
Path:
/
/
usr
/
lib64
/
perl5
/
CORE
Full Path (server): /usr/lib64/perl5/CORE
Create Fil3
Upl04d Fil3
📄 EXTERN.h
[E]
[D]
[R]
📄 INTERN.h
[E]
[D]
[R]
📄 XSUB.h
[E]
[D]
[R]
📄 av.h
[E]
[D]
[R]
📄 bitcount.h
[E]
[D]
[R]
📄 charclass_invlists.h
[E]
[D]
[R]
📄 config.h
[E]
[D]
[R]
📄 cop.h
[E]
[D]
[R]
📄 cv.h
[E]
[D]
[R]
📄 dosish.h
[E]
[D]
[R]
📄 embed.h
[E]
[D]
[R]
📄 embedvar.h
[E]
[D]
[R]
📄 fakesdio.h
[E]
[D]
[R]
📄 fakethr.h
[E]
[D]
[R]
📄 feature.h
[E]
[D]
[R]
📄 form.h
[E]
[D]
[R]
📄 git_version.h
[E]
[D]
[R]
📄 gv.h
[E]
[D]
[R]
📄 handy.h
[E]
[D]
[R]
📄 hv.h
[E]
[D]
[R]
📄 intrpvar.h
[E]
[D]
[R]
📄 iperlsys.h
[E]
[D]
[R]
📄 keywords.h
[E]
[D]
[R]
📄 l1_char_class_tab.h
[E]
[D]
[R]
📄 libperl.so
[E]
[D]
[R]
📄 malloc_ctl.h
[E]
[D]
[R]
📄 metaconfig.h
[E]
[D]
[R]
📄 mg.h
[E]
[D]
[R]
📄 mg_data.h
[E]
[D]
[R]
📄 mg_raw.h
[E]
[D]
[R]
📄 mg_vtable.h
[E]
[D]
[R]
📄 mydtrace.h
[E]
[D]
[R]
📄 nostdio.h
[E]
[D]
[R]
📄 op.h
[E]
[D]
[R]
📄 op_reg_common.h
[E]
[D]
[R]
📄 opcode.h
[E]
[D]
[R]
📄 opnames.h
[E]
[D]
[R]
📄 overload.h
[E]
[D]
[R]
📄 pad.h
[E]
[D]
[R]
📄 parser.h
[E]
[D]
[R]
📄 patchlevel.h
[E]
[D]
[R]
📄 perl.h
[E]
[D]
[R]
📄 perlapi.h
[E]
[D]
[R]
📄 perldtrace.h
[E]
[D]
[R]
📄 perlio.h
[E]
[D]
[R]
📄 perliol.h
[E]
[D]
[R]
📄 perlsdio.h
[E]
[D]
[R]
📄 perlsfio.h
[E]
[D]
[R]
📄 perlvars.h
[E]
[D]
[R]
📄 perly.h
[E]
[D]
[R]
📄 pp.h
[E]
[D]
[R]
📄 pp_proto.h
[E]
[D]
[R]
📄 proto.h
[E]
[D]
[R]
📄 reentr.h
[E]
[D]
[R]
📄 regcharclass.h
[E]
[D]
[R]
📄 regcomp.h
[E]
[D]
[R]
📄 regexp.h
[E]
[D]
[R]
📄 regnodes.h
[E]
[D]
[R]
📄 scope.h
[E]
[D]
[R]
📄 sv.h
[E]
[D]
[R]
📄 thread.h
[E]
[D]
[R]
📄 time64.h
[E]
[D]
[R]
📄 time64_config.h
[E]
[D]
[R]
📄 uconfig.h
[E]
[D]
[R]
📄 unixish.h
[E]
[D]
[R]
📄 utf8.h
[E]
[D]
[R]
📄 utfebcdic.h
[E]
[D]
[R]
📄 util.h
[E]
[D]
[R]
📄 uudmap.h
[E]
[D]
[R]
📄 warnings.h
[E]
[D]
[R]
Editing: time64.h
#include <time.h> #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 # ifdef __GLIBC__ const char *tm_zone; # else char *tm_zone; # endif #endif }; /* Decide which tm struct to use */ #ifdef USE_TM64 #define TM TM64 #else #define TM tm #endif /* Declare functions */ static struct TM *S_gmtime64_r (const Time64_T *, struct TM *); static struct TM *S_localtime64_r (const Time64_T *, struct TM *); static Time64_T S_timegm64 (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
Save