sys_stat: Fix 'implicit declaration of function' warning on OS/2 kLIBC.
[gnulib.git] / lib / localtime.c
blob8ff1d07f7dad0ec43a0a8873069ca1186a15c6dc
1 /* Work around platform bugs in localtime.
2 Copyright (C) 2017-2019 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 /* Specification. */
20 #include <time.h>
22 /* Keep consistent with localtime-buffer.c! */
23 #if !(GETTIMEOFDAY_CLOBBERS_LOCALTIME || TZSET_CLOBBERS_LOCALTIME)
25 # include <stdlib.h>
26 # include <string.h>
28 # undef localtime
30 struct tm *
31 rpl_localtime (const time_t *tp)
33 # if defined _WIN32 && ! defined __CYGWIN__
34 /* Rectify the value of the environment variable TZ.
35 There are four possible kinds of such values:
36 - Traditional US time zone names, e.g. "PST8PDT". Syntax: see
37 <https://msdn.microsoft.com/en-us/library/90s5c885.aspx>
38 - Time zone names based on geography, that contain one or more
39 slashes, e.g. "Europe/Moscow".
40 - Time zone names based on geography, without slashes, e.g.
41 "Singapore".
42 - Time zone names that contain explicit DST rules. Syntax: see
43 <http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap08.html#tag_08_03>
44 The Microsoft CRT understands only the first kind. It produces incorrect
45 results if the value of TZ is of the other kinds.
46 But in a Cygwin environment, /etc/profile.d/tzset.sh sets TZ to a value
47 of the second kind for most geographies, or of the first kind in a few
48 other geographies. If it is of the second kind, neutralize it. For the
49 Microsoft CRT, an absent or empty TZ means the time zone that the user
50 has set in the Windows Control Panel.
51 If the value of TZ is of the third or fourth kind -- Cygwin programs
52 understand these syntaxes as well --, it does not matter whether we
53 neutralize it or not, since these values occur only when a Cygwin user
54 has set TZ explicitly; this case is 1. rare and 2. under the user's
55 responsibility. */
56 const char *tz = getenv ("TZ");
57 if (tz != NULL && strchr (tz, '/') != NULL)
58 _putenv ("TZ=");
59 # endif
61 return localtime (tp);
64 #endif