* include/io.h (X_OK): Define to F_OK.

This commit is contained in:
Danny Smith 2007-01-24 08:27:12 +00:00
parent f28f68cc4f
commit c0c32634da
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-01-24 Danny Smith <dannysmith@users.sourceforge.net>
* include/io.h (X_OK): Define to F_OK.
2007-01-19 Danny Smith <dannysmith@users.sourceforge.net>
* include/stdio.h (SEEK_SET, SEEK_CUR, SEEK_END): Define

View File

@ -180,7 +180,9 @@ _CRTIMP int __cdecl chmod (const char*, int);
/* Some defines for _access nAccessMode (MS doesn't define them, but
* it doesn't seem to hurt to add them). */
#define F_OK 0 /* Check for file existence */
#define X_OK 1 /* Check for execute permission. */
/* Well maybe it does hurt. On newer versions of MSVCRT, an access mode
of 1 causes invalid parameter error. */
#define X_OK F_OK /* MS access() doesn't check for execute permission. */
#define W_OK 2 /* Check for write permission */
#define R_OK 4 /* Check for read permission */