diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-26 22:19:01 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-26 22:19:01 +0000 |
commit | 1466eb283c8eee992835f66433c43fd4d31e92bc (patch) | |
tree | bc21098e1d0ecf904e232eefc86bb4380247da09 /libcrypt | |
parent | 05e75260d6952308d7c865ff67c0e3678b7ba935 (diff) |
Some more prototypes, enable missing-prototypes/declarations warnings for now
Diffstat (limited to 'libcrypt')
-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; |