summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1996-05-03 18:23:44 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1996-05-03 18:23:44 +0000
commit1cf9a690c49b532ee41a48b77d5a3901885662af (patch)
tree0e5eda12da00b7b1b11d3fb32b532e9bbe138e49 /nt
parentc99437f901a7b68c281f4c54d59fcc58d6958590 (diff)
downloademacs-1cf9a690c49b532ee41a48b77d5a3901885662af.tar.gz
(F_OK, X_OK, W_OK, R_OK): New macros.
Diffstat (limited to 'nt')
-rw-r--r--nt/inc/sys/file.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/nt/inc/sys/file.h b/nt/inc/sys/file.h
index f84e2b34811..8536d0362f1 100644
--- a/nt/inc/sys/file.h
+++ b/nt/inc/sys/file.h
@@ -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