From: Andrew Innes Date: Tue, 22 Aug 2000 21:53:28 +0000 (+0000) Subject: (F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is X-Git-Tag: emacs-pretest-21.0.90~2050 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9366e3b092fd5b73cba4026e34bce29c90fd7fec;p=emacs.git (F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is not defined. --- 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