We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 203e682 commit fb6db6fCopy full SHA for fb6db6f
src/compat/compat.h
@@ -60,6 +60,8 @@ typedef unsigned int SOCKET;
60
#endif
61
62
63
+// Windows doesn't define S_IRUSR or S_IWUSR. We define both
64
+// here, with the same values as glibc (see stat.h).
65
#ifdef WIN32
66
#ifndef S_IRUSR
67
#define S_IRUSR 0400
src/wallet/bdb.cpp
@@ -3,6 +3,7 @@
3
// Distributed under the MIT software license, see the accompanying
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6
+#include <compat/compat.h>
7
#include <fs.h>
8
#include <wallet/bdb.h>
9
#include <wallet/db.h>
0 commit comments