diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 10:07:09 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 10:07:09 +0000 |
commit | 62f6efafe23368a27c2fc3a40fad3597f768603c (patch) | |
tree | 0c411af11f2ee2052f4e0455000f6ae6af00aa29 | |
parent | 68ab26b26ba2a30efd939d899a24a59731738534 (diff) |
Hidden __md5_crypt/__des_crypt, missed to adapt prototype
-rw-r--r-- | libcrypt/crypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrypt/crypt.c b/libcrypt/crypt.c index a7dd35458..a1bba6ebd 100644 --- a/libcrypt/crypt.c +++ b/libcrypt/crypt.c @@ -26,8 +26,8 @@ #include <crypt.h> #include <unistd.h> -extern char * __md5_crypt( const char *pw, const char *salt); -extern char * __des_crypt( const char *pw, const char *salt); +extern char * __md5_crypt( const char *pw, const char *salt) attribute_hidden; +extern char * __des_crypt( const char *pw, const char *salt) attribute_hidden; extern char * crypt(const char *key, const char *salt) { |