Use non-POSIX values for S_IREAD and S_IWRITE.

(As requested in the PR.)
This commit is contained in:
Patrick Pelletier
2018-08-17 13:39:15 -07:00
committed by Oliver Schmidt
parent 411a5a9483
commit e549e23a87
2 changed files with 6 additions and 11 deletions

View File

@@ -44,15 +44,10 @@
/* These are the values for the traditional UNIX mode bits:
** https://en.wikipedia.org/wiki/File_system_permissions#Numeric_notation
** (S_IREAD and S_IWRITE are aliases for S_IRUSR and S_IWUSR)
**
** Must match the values in src/sim65/paravirt.c
*/
/* Must match the values in src/sim65/paravirt.c */
#define S_IREAD 0400
#define S_IWRITE 0200
#define S_IREAD 0x1
#define S_IWRITE 0x2
/*****************************************************************************/