]> git.cworth.org Git - tar/blob - lib/time.in.h
Imported Upstream version 1.21
[tar] / lib / time.in.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* A more-standard <time.h>.
4
5    Copyright (C) 2007-2008 Free Software Foundation, Inc.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software Foundation,
19    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20
21 #if __GNUC__ >= 3
22 @PRAGMA_SYSTEM_HEADER@
23 #endif
24
25 /* Don't get in the way of glibc when it includes time.h merely to
26    declare a few standard symbols, rather than to declare all the
27    symbols.  Also, Solaris 8 <time.h> eventually includes itself
28    recursively; if that is happening, just include the system <time.h>
29    without adding our own declarations.  */
30 #if (defined __need_time_t || defined __need_clock_t \
31      || defined __need_timespec \
32      || defined _GL_TIME_H)
33
34 # @INCLUDE_NEXT@ @NEXT_TIME_H@
35
36 #else
37
38 # define _GL_TIME_H
39
40 # @INCLUDE_NEXT@ @NEXT_TIME_H@
41
42 # ifdef __cplusplus
43 extern "C" {
44 # endif
45
46 /* Some systems don't define struct timespec (e.g., AIX 4.1, Ultrix 4.3).
47    Or they define it with the wrong member names or define it in <sys/time.h>
48    (e.g., FreeBSD circa 1997).  */
49 # if ! @TIME_H_DEFINES_STRUCT_TIMESPEC@
50 #  if @SYS_TIME_H_DEFINES_STRUCT_TIMESPEC@
51 #   include <sys/time.h>
52 #  else
53 #   undef timespec
54 #   define timespec rpl_timespec
55 struct timespec
56 {
57   time_t tv_sec;
58   long int tv_nsec;
59 };
60 #  endif
61 # endif
62
63 /* Sleep for at least RQTP seconds unless interrupted,  If interrupted,
64    return -1 and store the remaining time into RMTP.  See
65    <http://www.opengroup.org/susv3xsh/nanosleep.html>.  */
66 # if @REPLACE_NANOSLEEP@
67 #  define nanosleep rpl_nanosleep
68 int nanosleep (struct timespec const *__rqtp, struct timespec *__rmtp);
69 # endif
70
71 /* Convert TIMER to RESULT, assuming local time and UTC respectively.  See
72    <http://www.opengroup.org/susv3xsh/localtime_r.html> and
73    <http://www.opengroup.org/susv3xsh/gmtime_r.html>.  */
74 # if @REPLACE_LOCALTIME_R@
75 #  undef localtime_r
76 #  define localtime_r rpl_localtime_r
77 #  undef gmtime_r
78 #  define gmtime_r rpl_gmtime_r
79 struct tm *localtime_r (time_t const *restrict __timer,
80                         struct tm *restrict __result);
81 struct tm *gmtime_r (time_t const *restrict __timer,
82                      struct tm *restrict __result);
83 # endif
84
85 /* Parse BUF as a time stamp, assuming FORMAT specifies its layout, and store
86    the resulting broken-down time into TM.  See
87    <http://www.opengroup.org/susv3xsh/strptime.html>.  */
88 # if @REPLACE_STRPTIME@
89 #  undef strptime
90 #  define strptime rpl_strptime
91 char *strptime (char const *restrict __buf, char const *restrict __format,
92                 struct tm *restrict __tm);
93 # endif
94
95 /* Convert TM to a time_t value, assuming UTC.  */
96 # if @REPLACE_TIMEGM@
97 #  undef timegm
98 #  define timegm rpl_timegm
99 time_t timegm (struct tm *__tm);
100 # endif
101
102 /* Encourage applications to avoid unsafe functions that can overrun
103    buffers when given outlandish struct tm values.  Portable
104    applications should use strftime (or even sprintf) instead.  */
105 # if GNULIB_PORTCHECK
106 #  undef asctime
107 #  define asctime eschew_asctime
108 #  undef asctime_r
109 #  define asctime_r eschew_asctime_r
110 #  undef ctime
111 #  define ctime eschew_ctime
112 #  undef ctime_r
113 #  define ctime_r eschew_ctime_r
114 # endif
115
116 # ifdef __cplusplus
117 }
118 # endif
119
120 #endif