diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2005-01-19 10:31:51 +0000 |
---|---|---|
committer | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2005-01-19 10:31:51 +0000 |
commit | acd92003c8145079c6226211848e26b0472d8445 (patch) | |
tree | 56f271fbcb5b1453d93b89843daedfff749d2419 /libcrypt/md5.c | |
parent | 7b735a37585a73e8ec60a03ff52e24fe98f10cec (diff) | |
download | uClibc-alpine-acd92003c8145079c6226211848e26b0472d8445.tar.bz2 uClibc-alpine-acd92003c8145079c6226211848e26b0472d8445.tar.xz |
Avoid compiler warnings.
Diffstat (limited to 'libcrypt/md5.c')
-rw-r--r-- | libcrypt/md5.c | 10 |
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; |