Commit 63fae645 authored by Alexandre Julliard's avatar Alexandre Julliard

Added definitions for S_IXUSR, S_IXGRP and S_IXOTH.

parent 95784300
......@@ -134,6 +134,16 @@ struct statvfs
# define O_NONBLOCK 0
#endif
#if !defined(S_IXUSR) && defined(S_IEXEC)
# define S_IXUSR S_IEXEC
#endif
#if !defined(S_IXGRP) && defined(S_IEXEC)
# define S_IXGRP S_IEXEC
#endif
#if !defined(S_IXOTH) && defined(S_IEXEC)
# define S_IXOTH S_IEXEC
#endif
/****************************************************************
* Constants
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment