summaryrefslogtreecommitdiff
path: root/lib/tzset.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-03-14 09:49:24 +0100
committerBruno Haible <bruno@clisp.org>2019-03-14 09:49:24 +0100
commit05044004157556f2c41e35b3823688a984722d15 (patch)
treea74a46f0dab1177f4405335366e8fc760edc6adc /lib/tzset.c
parent7952aabdf99f8083328f79eda136fe8718f7157a (diff)
downloadgnulib-05044004157556f2c41e35b3823688a984722d15.tar.gz
all: Update URLs to msdn.microsoft.com.
* lib/stat-w32.c et al.: Update URLs after most of msdn.microsoft.com was moved to docs.microsoft.com.
Diffstat (limited to 'lib/tzset.c')
-rw-r--r--lib/tzset.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tzset.c b/lib/tzset.c
index 998df7b13d..ea70686046 100644
--- a/lib/tzset.c
+++ b/lib/tzset.c
@@ -44,7 +44,7 @@ tzset (void)
/* Rectify the value of the environment variable TZ.
There are four possible kinds of such values:
- Traditional US time zone names, e.g. "PST8PDT". Syntax: see
- <https://msdn.microsoft.com/en-us/library/90s5c885.aspx>
+ <https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/tzset>
- Time zone names based on geography, that contain one or more
slashes, e.g. "Europe/Moscow".
- Time zone names based on geography, without slashes, e.g.
@@ -68,8 +68,8 @@ tzset (void)
_putenv ("TZ=");
/* On native Windows, tzset() is deprecated. Use _tzset() instead. See
- https://msdn.microsoft.com/en-us/library/ms235451.aspx
- https://msdn.microsoft.com/en-us/library/90s5c885.aspx */
+ <https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/posix-tzset>
+ <https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/tzset> */
_tzset ();
#elif HAVE_TZSET
tzset ();