Browse Source

Hidden __md5_crypt/__des_crypt, missed to adapt prototype

Peter S. Mazinger 18 years ago
parent
commit
62f6efafe2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libcrypt/crypt.c

+ 2 - 2
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)
 {