diff options
Diffstat (limited to 'ext/misc/fileio.c')
-rw-r--r-- | ext/misc/fileio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/misc/fileio.c b/ext/misc/fileio.c index 1335229f9..d977d41dd 100644 --- a/ext/misc/fileio.c +++ b/ext/misc/fileio.c @@ -394,6 +394,7 @@ static int writeFile( if( mtime>=0 ){ #if defined(_WIN32) +#if !SQLITE_OS_WINRT /* Windows */ FILETIME lastAccess; FILETIME lastWrite; @@ -424,6 +425,7 @@ static int writeFile( }else{ return 1; } +#endif #elif defined(AT_FDCWD) && 0 /* utimensat() is not universally available */ /* Recent unix */ struct timespec times[2]; |