repo.or.cz
/
emacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
A few more naming-convention fixes for getters and setters.
[emacs.git]
/
nt
/
inc
/
sys
/
file.h
blob
504dce56d85c47c19f930f45f547adef6864b696
1
/*
2
* sys\file.h doesn't exist on NT - only needed for these constants
3
*/
4
5
#ifndef D_OK
6
#define F_OK 0
7
#define X_OK 1
8
#define W_OK 2
9
#define R_OK 4
10
#define D_OK 8
11
#endif
12