diff options
Diffstat (limited to 'libcrypt/md5.c')
-rw-r--r-- | libcrypt/md5.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcrypt/md5.c b/libcrypt/md5.c index 7d852b7b2..82b35dd40 100644 --- a/libcrypt/md5.c +++ b/libcrypt/md5.c @@ -531,7 +531,8 @@ static void __md5_to64( char *s, unsigned long v, int n) * Use MD5 for what it is best at... */ -extern char attribute_hidden * __md5_crypt( const char *pw, const char *salt) +char * __md5_crypt( const char *pw, const char *salt) attribute_hidden; +char * __md5_crypt( const char *pw, const char *salt) { /* Static stuff */ static const char *sp, *ep; |