From 3446f6068558765c6042778abaa3c43c17859283 Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Tue, 8 Mar 2016 14:55:05 +0200 Subject: [PATCH] Fix: add missing sys/types.h header MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The musl C library requires inclusion of sys/types.h for mode_t. Signed-off-by: Baruch Siach Signed-off-by: Jérémie Galarneau --- src/common/runas.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/runas.h b/src/common/runas.h index 2c5565af3..ac1143eec 100644 --- a/src/common/runas.h +++ b/src/common/runas.h @@ -19,6 +19,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include #include #include -- 2.34.1