# HG changeset patch # User Geoff Voelker # Date 831147824 0 # Node ID cc3c8961d60ad3faaae493173f6b5ce558e558b3 # Parent dddda397bca029c57a0c4ab6a3797a997d879dd8 (F_OK, X_OK, W_OK, R_OK): New macros. diff -r dddda397bca0 -r cc3c8961d60a nt/inc/sys/file.h --- a/nt/inc/sys/file.h Fri May 03 18:20:29 1996 +0000 +++ b/nt/inc/sys/file.h Fri May 03 18:23:44 1996 +0000 @@ -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