summaryrefslogtreecommitdiff
path: root/libcrypt/des.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-06-29 20:32:47 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-06-29 20:32:47 +0000
commit2f98c4258bada4b7de8dc4401dded43ade7f1c60 (patch)
tree1af5814cb84497d0fbd88816db6d193747830b82 /libcrypt/des.c
parentbe78085df51bd0c9e8c3a7c0a4f13fe1f074130f (diff)
Fix a missing include in des.c and add configurability of loop unrolling
to md5.c. Note: by default it is smallest/slowest.
Diffstat (limited to 'libcrypt/des.c')
-rw-r--r--libcrypt/des.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libcrypt/des.c b/libcrypt/des.c
index 93803d2e0..04b1e7f2f 100644
--- a/libcrypt/des.c
+++ b/libcrypt/des.c
@@ -43,6 +43,7 @@
* a no-password login.
*/
+#include <string.h>
#include <crypt.h>
extern char * md5_crypt_r( const char *pw, const char *salt, struct crypt_data * data);