Explorar el Código

Hidden __md5_crypt/__des_crypt, missed to adapt prototype

Peter S. Mazinger hace 18 años
padre
commit
62f6efafe2
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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)
 {