From a444bb67e9a314a6e4e9b5c1e966b43aa02ec85a Mon Sep 17 00:00:00 2001 From: Yury Usishchev Date: Mon, 15 Feb 2016 18:17:32 +0300 Subject: Rework config.h usage Move #include "config.h" from misc.h to every source file. It's incorrect to include it after a system header file because it does things like: Those must come before you include any system header file in order for them to work properly. It hasn't bitten us so far, but we still should fix the files to do the right thing. --- libacl/__apply_mask_to_mode.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libacl/__apply_mask_to_mode.c') diff --git a/libacl/__apply_mask_to_mode.c b/libacl/__apply_mask_to_mode.c index 3e5421b..1fa8e96 100644 --- a/libacl/__apply_mask_to_mode.c +++ b/libacl/__apply_mask_to_mode.c @@ -20,6 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" #include #include #include "libacl.h" -- cgit v1.2.1