svn commit: trunk/uClibc/libcrypt

psm at uclibc.org psm at uclibc.org
Tue Dec 13 10:07:09 UTC 2005


Author: psm
Date: 2005-12-13 02:07:09 -0800 (Tue, 13 Dec 2005)
New Revision: 12864

Log:
Hidden __md5_crypt/__des_crypt, missed to adapt prototype

Modified:
   trunk/uClibc/libcrypt/crypt.c


Changeset:
Modified: trunk/uClibc/libcrypt/crypt.c
===================================================================
--- trunk/uClibc/libcrypt/crypt.c	2005-12-13 10:02:23 UTC (rev 12863)
+++ trunk/uClibc/libcrypt/crypt.c	2005-12-13 10:07:09 UTC (rev 12864)
@@ -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)
 {




More information about the uClibc-cvs mailing list