blob: 3901ca6994c695343e97160c7ddf524432dbc571 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Christopher Ferris6a9755d2017-01-13 14:09:31 -08007#ifndef __UAPI_POSIX_ACL_XATTR_H
8#define __UAPI_POSIX_ACL_XATTR_H
9#include <linux/types.h>
10#define POSIX_ACL_XATTR_VERSION 0x0002
Christopher Ferris6a9755d2017-01-13 14:09:31 -080011#define ACL_UNDEFINED_ID (- 1)
12struct posix_acl_xattr_entry {
13 __le16 e_tag;
14 __le16 e_perm;
Christopher Ferris6a9755d2017-01-13 14:09:31 -080015 __le32 e_id;
16};
17struct posix_acl_xattr_header {
18 __le32 a_version;
Christopher Ferris6a9755d2017-01-13 14:09:31 -080019};
20#endif