summaryrefslogtreecommitdiffstats
path: root/build/has/acl-get-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'build/has/acl-get-file.c')
-rw-r--r--build/has/acl-get-file.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/build/has/acl-get-file.c b/build/has/acl-get-file.c
new file mode 100644
index 0000000..89fbf23
--- /dev/null
+++ b/build/has/acl-get-file.c
@@ -0,0 +1,8 @@
+#include <stddef.h>
+#include <sys/types.h>
+#include <sys/acl.h>
+
+int main(void) {
+ acl_t acl = acl_get_file(".", ACL_TYPE_DEFAULT);
+ return acl == (acl_t)NULL;
+}