blob: b4f12805330c7cc8eaf47461167590c02a4f4591 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2
3Copyright (c) 2007-2008 Michael G Schwern
4
5This software originally derived from Paul Sheer's pivotal_gmtime_r.c.
6
7The MIT License:
8
9Permission is hereby granted, free of charge, to any person obtaining a copy
10of this software and associated documentation files (the "Software"), to deal
11in the Software without restriction, including without limitation the rights
12to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13copies of the Software, and to permit persons to whom the Software is
14furnished to do so, subject to the following conditions:
15
16The above copyright notice and this permission notice shall be included in
17all copies or substantial portions of the Software.
18
19THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25THE SOFTWARE.
26
27Origin: http://code.google.com/p/y2038
28Modified for Bionic by the Android Open Source Project
29
30*/
31#ifndef TIME64_H
32#define TIME64_H
33
Elliott Hughes8d77bce2014-04-22 13:55:58 -070034#if defined(__LP64__)
35
36/* TODO: remove this when external/chromium_org is fixed. */
37#define time64_t time_t
38#define gmtime64_r gmtime_r
39#define localtime64_r localtime_r
40#define mktime64 mktime
41#define timegm64 timegm
42
43#else
44
45/* Legacy cruft for LP32 where time_t was 32-bit. */
46
Fred Fettingerb5239ed2009-11-20 16:57:14 -060047#include <sys/cdefs.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080048#include <time.h>
49#include <stdint.h>
50
Fred Fettingerb5239ed2009-11-20 16:57:14 -060051__BEGIN_DECLS
52
Elliott Hughes8d77bce2014-04-22 13:55:58 -070053typedef int64_t time64_t;
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080054
Elliott Hughes8d77bce2014-04-22 13:55:58 -070055char* asctime64(const struct tm*);
56char* asctime64_r(const struct tm*, char*);
57char* ctime64(const time64_t*);
58char* ctime64_r(const time64_t*, char*);
59struct tm* gmtime64(const time64_t*);
60struct tm* gmtime64_r(const time64_t*, struct tm*);
61struct tm* localtime64(const time64_t*);
62struct tm* localtime64_r(const time64_t*, struct tm*);
63time64_t mktime64(const struct tm*);
64time64_t timegm64(const struct tm*);
65time64_t timelocal64(const struct tm*);
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080066
Fred Fettingerb5239ed2009-11-20 16:57:14 -060067__END_DECLS
68
Elliott Hughes8d77bce2014-04-22 13:55:58 -070069#endif
70
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080071#endif /* TIME64_H */