comparison nt/inc/sys/file.h @ 15134:cc3c8961d60a

(F_OK, X_OK, W_OK, R_OK): New macros.
author Geoff Voelker <voelker@cs.washington.edu>
date Fri, 03 May 1996 18:23:44 +0000
parents 1877e9736ea1
children 841b8916e3b2
comparison
equal deleted inserted replaced
15133:dddda397bca0 15134:cc3c8961d60a
1 /* 1 /*
2 * sys\file.h doesn't exist on NT...rather than including it conditionally 2 * sys\file.h doesn't exist on NT - only needed for these constants
3 * in some of the source files, we just extend the include path so that the
4 * compiler will pick up this empty header instead.
5 */ 3 */
4
5 #define F_OK 0
6 #define X_OK 1
7 #define W_OK 2
8 #define R_OK 4