23 lines
529 B
C
23 lines
529 B
C
/* Generated by ./xlat/gen.sh from ./xlat/xattrflags.in; do not edit. */
|
|
#if !(defined(XATTR_CREATE) || (defined(HAVE_DECL_XATTR_CREATE) && HAVE_DECL_XATTR_CREATE))
|
|
# define XATTR_CREATE 1
|
|
#endif
|
|
#if !(defined(XATTR_REPLACE) || (defined(HAVE_DECL_XATTR_REPLACE) && HAVE_DECL_XATTR_REPLACE))
|
|
# define XATTR_REPLACE 2
|
|
#endif
|
|
|
|
#ifdef IN_MPERS
|
|
|
|
# error static const struct xlat xattrflags in mpers mode
|
|
|
|
#else
|
|
|
|
static
|
|
const struct xlat xattrflags[] = {
|
|
XLAT(XATTR_CREATE),
|
|
XLAT(XATTR_REPLACE),
|
|
XLAT_END
|
|
};
|
|
|
|
#endif /* !IN_MPERS */
|