1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| /* Generated by ./xlat/gen.sh from ./xlat/access_flags.in; do not edit. */
|
| #include "gcc_compat.h"
| #include "static_assert.h"
|
|
| #ifndef XLAT_MACROS_ONLY
|
| # ifdef IN_MPERS
|
| # error static const struct xlat access_flags in mpers mode
|
| # else
|
| static
| const struct xlat access_flags[] = {
| #if defined(F_OK) || (defined(HAVE_DECL_F_OK) && HAVE_DECL_F_OK)
| XLAT(F_OK),
| #endif
| #if defined(R_OK) || (defined(HAVE_DECL_R_OK) && HAVE_DECL_R_OK)
| XLAT(R_OK),
| #endif
| #if defined(W_OK) || (defined(HAVE_DECL_W_OK) && HAVE_DECL_W_OK)
| XLAT(W_OK),
| #endif
| #if defined(X_OK) || (defined(HAVE_DECL_X_OK) && HAVE_DECL_X_OK)
| XLAT(X_OK),
| #endif
| #if defined(EFF_ONLY_OK) || (defined(HAVE_DECL_EFF_ONLY_OK) && HAVE_DECL_EFF_ONLY_OK)
| XLAT(EFF_ONLY_OK),
| #endif
| #if defined(EX_OK) || (defined(HAVE_DECL_EX_OK) && HAVE_DECL_EX_OK)
| XLAT(EX_OK),
| #endif
| XLAT_END
| };
|
| # endif /* !IN_MPERS */
|
| #endif /* !XLAT_MACROS_ONLY */
|
|