diff options
author | Timo Weingärtner <timo@tiwe.de> | 2013-05-10 21:27:56 +0200 |
---|---|---|
committer | Timo Weingärtner <timo@tiwe.de> | 2013-05-12 18:44:18 +0200 |
commit | 88dd2b1a22cd06fc401a8ddadd41114cebe159d5 (patch) | |
tree | 8f5e911e36bf06ef96ae33d1b76f61f350baceb6 /bigcrypt.c | |
parent | 138c589dd4cdf68659bfa643e5659fa1200f6081 (diff) | |
download | libpam-pwdfile-88dd2b1a22cd06fc401a8ddadd41114cebe159d5.tar.gz |
include proper headers for crypt()
this also prepares for crypt_r()
Diffstat (limited to 'bigcrypt.c')
-rw-r--r-- | bigcrypt.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -24,10 +24,11 @@ * Andy Phillips <atp@mssl.ucl.ac.uk> */ +#define _XOPEN_SOURCE +#include <unistd.h> #include <string.h> -char *crypt(const char *key, const char *salt); -char *bigcrypt(const char *key, const char *salt); +#include "bigcrypt.h" /* * Max cleartext password length in segments of 8 characters this |