Fixed CE build of sqlite3
The updated sqlite3 lacks a forward declaration of localtime. Depending on the CE version that forward declaration was sometimes available. Change-Id: Iec7de1167702ccec46b62f63b65a4710231c8534 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>bb10
parent
0084272c5c
commit
fb1649d30b
|
|
@ -14238,6 +14238,10 @@ static void clearYMD_HMS_TZ(DateTime *p){
|
|||
#define HAVE_LOCALTIME_S 1
|
||||
#endif
|
||||
|
||||
#if SQLITE_OS_WINCE >= 1
|
||||
struct tm *__cdecl localtime(const time_t *t);
|
||||
#endif
|
||||
|
||||
#ifndef SQLITE_OMIT_LOCALTIME
|
||||
/*
|
||||
** The following routine implements the rough equivalent of localtime_r()
|
||||
|
|
|
|||
Loading…
Reference in New Issue