1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Attempt to fix the fileio.c extension so that it builds on MinGW-64.

FossilOrigin-Name: a7446d3217d39c96c884fbfb294dd320378255f3bfb34e35d15ba6d7c6698f53
This commit is contained in:
drh
2018-01-09 14:27:58 +00:00
parent 128011a258
commit 8ee5d0fc05
3 changed files with 9 additions and 9 deletions

View File

@ -96,7 +96,7 @@ SQLITE_EXTENSION_INIT1
# define stat _stat
# endif
# define mkdir(path,mode) _mkdir(path)
# define lstat(path,buf) _stat(path,buf)
# define lstat(path,buf) stat(path,buf)
#endif
#include <time.h>
#include <errno.h>