]> git.ipfire.org Git - thirdparty/git.git/blobdiff - compat/mingw.c
mingw: avoid fallback for {local,gm}time_r()
[thirdparty/git.git] / compat / mingw.c
index 9e0cd1e097f25f59ebc15fe583cdcd215c82bfcd..e14f2d5f77ce7c5f7790f6f1f9143cc3fdae67b0 100644 (file)
@@ -1083,6 +1083,7 @@ int pipe(int filedes[2])
        return 0;
 }
 
+#ifndef __MINGW64__
 struct tm *gmtime_r(const time_t *timep, struct tm *result)
 {
        if (gmtime_s(result, timep) == 0)
@@ -1096,6 +1097,7 @@ struct tm *localtime_r(const time_t *timep, struct tm *result)
                return result;
        return NULL;
 }
+#endif
 
 char *mingw_getcwd(char *pointer, int len)
 {