From 57dbe4d5ac483f928b6e80b33993c8fd6a061aa7 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 27 Jun 2018 09:43:38 +0200 Subject: [PATCH] libbb: crypt() in newer glibc requires include Signed-off-by: Denys Vlasenko --- libbb/pw_encrypt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libbb/pw_encrypt.c b/libbb/pw_encrypt.c index 1edf4b6f0..86455cd0d 100644 --- a/libbb/pw_encrypt.c +++ b/libbb/pw_encrypt.c @@ -6,6 +6,7 @@ * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ +#include #include "libbb.h" /* static const uint8_t ascii64[] ALIGN1 = -- 2.25.1