diff options
author | deraadt <> | 2003-06-25 21:16:47 +0000 |
---|---|---|
committer | deraadt <> | 2003-06-25 21:16:47 +0000 |
commit | a87df78dc91434563f4a86616aa2bd6c71d91331 (patch) | |
tree | d96fc6298d7ca246906dcfd371249d9c474d45c1 /src/lib/libc/crypt/md5crypt.c | |
parent | 202e02ad6abad69d443409ff15fb9b68760a94b8 (diff) | |
download | openbsd-a87df78dc91434563f4a86616aa2bd6c71d91331.tar.gz openbsd-a87df78dc91434563f4a86616aa2bd6c71d91331.tar.bz2 openbsd-a87df78dc91434563f4a86616aa2bd6c71d91331.zip |
protos
Diffstat (limited to 'src/lib/libc/crypt/md5crypt.c')
-rw-r--r-- | src/lib/libc/crypt/md5crypt.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/md5crypt.c b/src/lib/libc/crypt/md5crypt.c index 048858494c..fb09b375e6 100644 --- a/src/lib/libc/crypt/md5crypt.c +++ b/src/lib/libc/crypt/md5crypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: md5crypt.c,v 1.11 2003/04/02 20:35:29 millert Exp $ */ | 1 | /* $OpenBSD: md5crypt.c,v 1.12 2003/06/25 21:16:47 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * ---------------------------------------------------------------------------- | 4 | * ---------------------------------------------------------------------------- |
@@ -13,7 +13,7 @@ | |||
13 | */ | 13 | */ |
14 | 14 | ||
15 | #if defined(LIBC_SCCS) && !defined(lint) | 15 | #if defined(LIBC_SCCS) && !defined(lint) |
16 | static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.11 2003/04/02 20:35:29 millert Exp $"; | 16 | static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.12 2003/06/25 21:16:47 deraadt Exp $"; |
17 | #endif /* LIBC_SCCS and not lint */ | 17 | #endif /* LIBC_SCCS and not lint */ |
18 | 18 | ||
19 | #include <unistd.h> | 19 | #include <unistd.h> |
@@ -45,6 +45,8 @@ to64(s, v, n) | |||
45 | * Use MD5 for what it is best at... | 45 | * Use MD5 for what it is best at... |
46 | */ | 46 | */ |
47 | 47 | ||
48 | char *md5crypt(const char *pw, const char *salt); | ||
49 | |||
48 | char * | 50 | char * |
49 | md5crypt(pw, salt) | 51 | md5crypt(pw, salt) |
50 | register const char *pw; | 52 | register const char *pw; |