From 9366e3b092fd5b73cba4026e34bce29c90fd7fec Mon Sep 17 00:00:00 2001 From: Andrew Innes Date: Tue, 22 Aug 2000 21:53:28 +0000 Subject: [PATCH] (F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is not defined. --- nt/inc/sys/file.h | 2 ++ 1 file changed, 2 insertions(+) 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 @@ * sys\file.h doesn't exist on NT - only needed for these constants */ +#ifndef D_OK #define F_OK 0 #define X_OK 1 #define W_OK 2 #define R_OK 4 #define D_OK 8 +#endif -- 2.39.2