mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-14 16:50:58 +00:00
15 lines
257 B
C
15 lines
257 B
C
/*
|
|
* 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
|
|
|
|
/* arch-tag: 7df3e73e-56bc-4ad9-b699-33149ea47959
|
|
(do not change this comment) */
|