summaryrefslogtreecommitdiffstats
path: root/build/has/acl-get-tag-type.c
diff options
context:
space:
mode:
Diffstat (limited to 'build/has/acl-get-tag-type.c')
-rw-r--r--build/has/acl-get-tag-type.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/build/has/acl-get-tag-type.c b/build/has/acl-get-tag-type.c
new file mode 100644
index 0000000..2901956
--- /dev/null
+++ b/build/has/acl-get-tag-type.c
@@ -0,0 +1,10 @@
+#include <string.h>
+#include <sys/types.h>
+#include <sys/acl.h>
+
+int main(void) {
+ acl_entry_t entry;
+ memset(&entry, 0, sizeof(entry));
+ acl_tag_t tag;
+ return acl_get_tag_type(entry, &tag);
+}