summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-13 10:07:09 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-13 10:07:09 +0000
commit62f6efafe23368a27c2fc3a40fad3597f768603c (patch)
tree0c411af11f2ee2052f4e0455000f6ae6af00aa29 /libcrypt
parent68ab26b26ba2a30efd939d899a24a59731738534 (diff)
Hidden __md5_crypt/__des_crypt, missed to adapt prototype
Diffstat (limited to 'libcrypt')
-rw-r--r--libcrypt/crypt.c4
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)
{