From cdcfe4e8e9d71c9b0d18029baac6f2fb167afc21 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Fri, 20 Apr 2001 15:50:03 +0000 Subject: * include/sys/file.h: Move X_OK protection earlier. * dtable.cc (dtable::vfork_child_fixup): Avoid closing already closed handles. --- winsup/cygwin/include/sys/file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/include/sys/file.h') diff --git a/winsup/cygwin/include/sys/file.h b/winsup/cygwin/include/sys/file.h index 9a63695df..85f9f4c74 100644 --- a/winsup/cygwin/include/sys/file.h +++ b/winsup/cygwin/include/sys/file.h @@ -25,10 +25,10 @@ #define F_OK 0 /* does file exist */ #define _X_OK 1 /* is it executable by caller */ +#undef X_OK #if defined (__CYGWIN__) || defined (__INSIDE_CYGWIN__) # define X_OK _X_OK /* Check for execute permission. */ #else -# undef X_OK extern const unsigned _cygwin_X_OK; # define X_OK _cygwin_X_OK #endif -- cgit v1.2.3