summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-26 22:19:01 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-26 22:19:01 +0000
commit1466eb283c8eee992835f66433c43fd4d31e92bc (patch)
treebc21098e1d0ecf904e232eefc86bb4380247da09 /libcrypt
parent05e75260d6952308d7c865ff67c0e3678b7ba935 (diff)
Some more prototypes, enable missing-prototypes/declarations warnings for now
Diffstat (limited to 'libcrypt')
-rw-r--r--libcrypt/md5.c3
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;