diff options
-rw-r--r-- | libbb/pw_encrypt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libbb/pw_encrypt.c b/libbb/pw_encrypt.c index a60c33c35..3463fd95b 100644 --- a/libbb/pw_encrypt.c +++ b/libbb/pw_encrypt.c | |||
@@ -7,7 +7,9 @@ | |||
7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
8 | */ | 8 | */ |
9 | #if !ENABLE_USE_BB_CRYPT | 9 | #if !ENABLE_USE_BB_CRYPT |
10 | #include <crypt.h> | 10 | # if !defined(__FreeBSD__) |
11 | # include <crypt.h> | ||
12 | # endif | ||
11 | #endif | 13 | #endif |
12 | #include "libbb.h" | 14 | #include "libbb.h" |
13 | 15 | ||