You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
981 B
29 lines
981 B
/* Generated by ./xlat/gen.sh from ./xlat/at_flags.in; do not edit. */ |
|
#if !(defined(AT_SYMLINK_NOFOLLOW) || (defined(HAVE_DECL_AT_SYMLINK_NOFOLLOW) && HAVE_DECL_AT_SYMLINK_NOFOLLOW)) |
|
# define AT_SYMLINK_NOFOLLOW 0x100 |
|
#endif |
|
#if !(defined(AT_REMOVEDIR) || (defined(HAVE_DECL_AT_REMOVEDIR) && HAVE_DECL_AT_REMOVEDIR)) |
|
# define AT_REMOVEDIR 0x200 |
|
#endif |
|
#if !(defined(AT_SYMLINK_FOLLOW) || (defined(HAVE_DECL_AT_SYMLINK_FOLLOW) && HAVE_DECL_AT_SYMLINK_FOLLOW)) |
|
# define AT_SYMLINK_FOLLOW 0x400 |
|
#endif |
|
#if !(defined(AT_NO_AUTOMOUNT) || (defined(HAVE_DECL_AT_NO_AUTOMOUNT) && HAVE_DECL_AT_NO_AUTOMOUNT)) |
|
# define AT_NO_AUTOMOUNT 0x800 |
|
#endif |
|
#if !(defined(AT_EMPTY_PATH) || (defined(HAVE_DECL_AT_EMPTY_PATH) && HAVE_DECL_AT_EMPTY_PATH)) |
|
# define AT_EMPTY_PATH 0x1000 |
|
#endif |
|
|
|
#ifndef IN_MPERS |
|
|
|
const struct xlat at_flags[] = { |
|
XLAT(AT_SYMLINK_NOFOLLOW), |
|
XLAT(AT_REMOVEDIR), |
|
XLAT(AT_SYMLINK_FOLLOW), |
|
XLAT(AT_NO_AUTOMOUNT), |
|
XLAT(AT_EMPTY_PATH), |
|
XLAT_END |
|
}; |
|
|
|
#endif /* !IN_MPERS */
|
|
|