summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2005-01-19 10:31:51 +0000
committerPeter Kjellerstedt <peter.kjellerstedt@axis.com>2005-01-19 10:31:51 +0000
commitacd92003c8145079c6226211848e26b0472d8445 (patch)
tree56f271fbcb5b1453d93b89843daedfff749d2419 /libcrypt
parent7b735a37585a73e8ec60a03ff52e24fe98f10cec (diff)
Avoid compiler warnings.
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;