From: Danny Smith Date: Wed, 24 Jan 2007 08:27:12 +0000 (+0000) Subject: * include/io.h (X_OK): Define to F_OK. X-Git-Tag: drop_9x_support_start~81 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=c0c32634da05b48f57ec8209b5efd8f859f2b894;p=newlib-cygwin.git * include/io.h (X_OK): Define to F_OK. --- diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 72687d5d4..8487abbaa 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,7 @@ +2007-01-24 Danny Smith + + * include/io.h (X_OK): Define to F_OK. + 2007-01-19 Danny Smith * include/stdio.h (SEEK_SET, SEEK_CUR, SEEK_END): Define diff --git a/winsup/mingw/include/io.h b/winsup/mingw/include/io.h index c45d10650..45e04110f 100644 --- a/winsup/mingw/include/io.h +++ b/winsup/mingw/include/io.h @@ -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 */