changeset 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 dddda397bca0
children 72a1f82a6748
files nt/inc/sys/file.h
diffstat 1 files changed, 6 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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