From a6a69a82b80cecadfc372a3b52100de7f1d7bfb6 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 26 Feb 2018 19:08:38 -0500 Subject: [PATCH] src/libadacl.h: add missing includes for "bool" and "struct stat" types. --- src/libadacl.h | 3 +++ 1 file changed, 3 insertions(+) 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. */ -- 2.43.2