diff options
-rw-r--r-- | src/3rdparty/sqlite/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/sqlite/sqlite3.c b/src/3rdparty/sqlite/sqlite3.c index e61cd38..90a64ba 100644 --- a/src/3rdparty/sqlite/sqlite3.c +++ b/src/3rdparty/sqlite/sqlite3.c @@ -27489,7 +27489,7 @@ static char *utf8ToMbcs(const char *zFilename){ ** WindowsCE does not have a localtime() function. So create a ** substitute. */ -struct tm *__cdecl localtime(const time_t *t) +static struct tm *__cdecl localtime(const time_t *t) { static struct tm y; FILETIME uTm, lTm; |