From: Michael Orlitzky Date: Tue, 27 Feb 2018 00:08:38 +0000 (-0500) Subject: src/libadacl.h: add missing includes for "bool" and "struct stat" types. X-Git-Tag: v0.1.2~1 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=a6a69a82b80cecadfc372a3b52100de7f1d7bfb6 src/libadacl.h: add missing includes for "bool" and "struct stat" types. --- diff --git a/src/libadacl.h b/src/libadacl.h index c70487a..be72ac3 100644 --- a/src/libadacl.h +++ b/src/libadacl.h @@ -5,6 +5,9 @@ * */ +#include /* the "bool" type */ +#include /* the "struct stat" type */ + /* Most of the libacl functions return 1 for success, 0 for failure, * and -1 on error. We follow suit. */