aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nt/inc/sys/file.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/nt/inc/sys/file.h b/nt/inc/sys/file.h
index 584079feef2..6a3fcc13e89 100644
--- a/nt/inc/sys/file.h
+++ b/nt/inc/sys/file.h
@@ -2,8 +2,10 @@
2 * sys\file.h doesn't exist on NT - only needed for these constants 2 * sys\file.h doesn't exist on NT - only needed for these constants
3 */ 3 */
4 4
5#ifndef D_OK
5#define F_OK 0 6#define F_OK 0
6#define X_OK 1 7#define X_OK 1
7#define W_OK 2 8#define W_OK 2
8#define R_OK 4 9#define R_OK 4
9#define D_OK 8 10#define D_OK 8
11#endif