diff options
author | mistachkin <mistachkin@noemail.net> | 2018-03-23 00:31:53 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2018-03-23 00:31:53 +0000 |
commit | ce2052bc39014d95998842edb920340c2468a2d6 (patch) | |
tree | 5eac7428c8508a483dad49b874367e2aad2ccdf5 /ext/misc/fileio.c | |
parent | a968e74fdcc44b9f0f1abf02a2fe1ecc26e6890a (diff) | |
download | sqlite-ce2052bc39014d95998842edb920340c2468a2d6.tar.gz sqlite-ce2052bc39014d95998842edb920340c2468a2d6.zip |
Fix harmless compiler warnings seen with MSVC.
FossilOrigin-Name: 2f2be1b1811e6b83fc8945da06e57b8b54233ff8a6ebd9d71b22c6bab2e74afb
Diffstat (limited to 'ext/misc/fileio.c')
-rw-r--r-- | ext/misc/fileio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/misc/fileio.c b/ext/misc/fileio.c index 8122b232c..b734ca0ba 100644 --- a/ext/misc/fileio.c +++ b/ext/misc/fileio.c @@ -93,6 +93,9 @@ SQLITE_EXTENSION_INIT1 # include <direct.h> # include "test_windirent.h" # define dirent DIRENT +# ifndef chmod +# define chmod _chmod +# endif # ifndef stat # define stat _stat # endif |