diff options
Diffstat (limited to 'build/with/libacl.c')
-rw-r--r-- | build/with/libacl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build/with/libacl.c b/build/with/libacl.c new file mode 100644 index 0000000..de1fe50 --- /dev/null +++ b/build/with/libacl.c @@ -0,0 +1,9 @@ +// Copyright © Tavian Barnes <tavianator@tavianator.com> +// SPDX-License-Identifier: 0BSD + +#include <sys/acl.h> + +int main(void) { + acl_free(0); + return 0; +} |