This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Patch in a 64 bit clean gmtime_r() and localtime_r() from the y2038 project. http...
[perl5.git]
/
localtime64.h
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
#include <time.h>
2
3
#ifndef LOCALTIME64_H
4
# define LOCALTIME64_H
5
6
typedef Quad_t Time64_T;
7
8
struct tm *gmtime64_r (const Time64_T *in_time, struct tm *p);
9
struct tm *localtime64_r (const Time64_T *time, struct tm *local_tm);
10
11
#endif