1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-14 16:50:58 +00:00

(F_OK, X_OK, W_OK, R_OK): New macros.

This commit is contained in:
Geoff Voelker 1996-05-03 18:23:44 +00:00
parent b1dd4ab334
commit 6c89f572f2

View File

@ -1,5 +1,8 @@
/*
* sys\file.h doesn't exist on NT...rather than including it conditionally
* in some of the source files, we just extend the include path so that the
* compiler will pick up this empty header instead.
* sys\file.h doesn't exist on NT - only needed for these constants
*/
#define F_OK 0
#define X_OK 1
#define W_OK 2
#define R_OK 4