summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
Diffstat (limited to 'libcrypt')
-rw-r--r--libcrypt/md5.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/libcrypt/md5.c b/libcrypt/md5.c
index cf8757083..27ee2a802 100644
--- a/libcrypt/md5.c
+++ b/libcrypt/md5.c
@@ -112,10 +112,7 @@ static const unsigned char __md5_itoa64[] = /* 0 ... 63 => ascii - 64 */
*/
static void
-__md5_Encode (output, input, len)
- unsigned char *output;
- u_int32_t *input;
- unsigned int len;
+__md5_Encode (unsigned char *output, u_int32_t *input, unsigned int len)
{
unsigned int i, j;
@@ -133,10 +130,7 @@ __md5_Encode (output, input, len)
*/
static void
-__md5_Decode (output, input, len)
- u_int32_t *output;
- const unsigned char *input;
- unsigned int len;
+__md5_Decode (u_int32_t *output, const unsigned char *input, unsigned int len)
{
unsigned int i, j;