comparison lib/stat-time.h @ 40235:5a52ef2d4772

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.
author Bruno Haible <bruno@clisp.org>
date Thu, 14 Mar 2019 09:49:24 +0100
parents b06060465f09
children
comparison
equal deleted inserted replaced
40234:fab7ce42e03f 40235:5a52ef2d4772
169 t.tv_sec = st->st_birthtime; 169 t.tv_sec = st->st_birthtime;
170 t.tv_nsec = st->st_birthtimensec; 170 t.tv_nsec = st->st_birthtimensec;
171 #elif defined _WIN32 && ! defined __CYGWIN__ 171 #elif defined _WIN32 && ! defined __CYGWIN__
172 /* Native Windows platforms (but not Cygwin) put the "file creation 172 /* Native Windows platforms (but not Cygwin) put the "file creation
173 time" in st_ctime (!). See 173 time" in st_ctime (!). See
174 <https://msdn.microsoft.com/en-us/library/14h5k7ff(VS.80).aspx>. */ 174 <https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/stat-functions>. */
175 # if _GL_WINDOWS_STAT_TIMESPEC 175 # if _GL_WINDOWS_STAT_TIMESPEC
176 t = st->st_ctim; 176 t = st->st_ctim;
177 # else 177 # else
178 t.tv_sec = st->st_ctime; 178 t.tv_sec = st->st_ctime;
179 t.tv_nsec = 0; 179 t.tv_nsec = 0;