Fixed Visual C++ build (and some style adjustments).

This commit is contained in:
Oliver Schmidt
2018-08-19 00:01:40 +02:00
parent 250e4ed9e0
commit 3598fb505d
2 changed files with 11 additions and 21 deletions

View File

@@ -2,7 +2,7 @@
/* */
/* stat.h */
/* */
/* Constants for the mode argument of open */
/* Constants for the mode argument of open and creat */
/* */
/* */
/* */
@@ -44,10 +44,9 @@
/* Must match the values in src/sim65/paravirt.c */
#define S_IREAD 0x01
#define S_IWRITE 0x02
#define S_IREAD 0x1
#define S_IWRITE 0x2
/*****************************************************************************/