diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-10 21:28:38 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-10 21:28:38 +0200 |
commit | 63d2555c9cefbbeeca3ec87fdd5d241e9488f9dd (patch) | |
tree | f96d5dcd14268406b6c78c002f9bb63db7fc9cb9 /src/config.h.in | |
parent | 4ca41534b726c4116d2e430e877e34146b4d4831 (diff) | |
download | vim-git-63d2555c9cefbbeeca3ec87fdd5d241e9488f9dd.tar.gz |
patch 8.1.1313: warnings for using localtime() and ctime()v8.1.1313
Problem: Warnings for using localtime() and ctime().
Solution: Use localtime_r() if available. Avoid using ctime().
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in index 3f122fddb..23e301c90 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -174,6 +174,7 @@ #undef HAVE_GETTIMEOFDAY #undef HAVE_GETWD #undef HAVE_ICONV +#undef HAVE_LOCALTIME_R #undef HAVE_LSTAT #undef HAVE_MEMSET #undef HAVE_MKDTEMP |