From 7168a42624fb9ce3305c9e666e44cc8a533af5f6 Mon Sep 17 00:00:00 2001 From: Alex Wied Date: Wed, 12 May 2021 15:15:11 -0400 Subject: [PATCH] Include limits.h to fix build on OSX --- src/acl.c | 2 -- src/common.h | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/acl.c b/src/acl.c index 63a3d34..2d141ba 100644 --- a/src/acl.c +++ b/src/acl.c @@ -31,8 +31,6 @@ #include "sblist.h" #include "hostspec.h" -#include - /* * Hold the information about a particular access control. We store * whether it's an ALLOW or DENY entry, and also whether it's a string diff --git a/src/common.h b/src/common.h index 563ee6f..a492582 100644 --- a/src/common.h +++ b/src/common.h @@ -68,6 +68,7 @@ # include # include # include +# include /* rest - some oddball headers */ #ifdef HAVE_VALUES_H