diff options
Diffstat (limited to 'src/compat')
-rw-r--r-- | src/compat/compat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compat/compat.h b/src/compat/compat.h index 21ec3b59b9..be97c6fe0b 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -60,6 +60,8 @@ typedef unsigned int SOCKET; #endif #endif +// Windows doesn't define S_IRUSR or S_IWUSR. We define both +// here, with the same values as glibc (see stat.h). #ifdef WIN32 #ifndef S_IRUSR #define S_IRUSR 0400 |