summaryrefslogtreecommitdiffstats
path: root/config/acl-get-file.c
blob: 89fbf239828c62909cb82c9b41d5d581c9d7f60b (plain)
1
2
3
4
5
6
7
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;
}