]> git.eshelyaron.com Git - emacs.git/commitdiff
(F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is
authorAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:53:28 +0000 (21:53 +0000)
committerAndrew Innes <andrewi@gnu.org>
Tue, 22 Aug 2000 21:53:28 +0000 (21:53 +0000)
not defined.

nt/inc/sys/file.h

index 584079feef2e2eaa44a32f6b336dddf70ecb428d..6a3fcc13e89e43c7f5f42cef8d4f7a848945cfeb 100644 (file)
@@ -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