diff options
-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) { |