]> gitweb.michael.orlitzky.com - apply-default-acl.git/commitdiff
src/libadacl.h: add missing includes for "bool" and "struct stat" types.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 27 Feb 2018 00:08:38 +0000 (19:08 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 27 Feb 2018 00:08:38 +0000 (19:08 -0500)
src/libadacl.h

index c70487ac2a57c84031f307aee5325eaea85478ab..be72ac3d149aa7c96bdd06748ef9df5182bc74c4 100644 (file)
@@ -5,6 +5,9 @@
  *
  */
 
+#include <stdbool.h>  /* the "bool" type */
+#include <sys/stat.h> /* the "struct stat" type */
+
 /* Most of the libacl functions return 1 for success, 0 for failure,
  * and -1 on error. We follow suit.
 */