diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
commit | 11975abb2c891e563dbed51a52c050ea0b05b8a4 (patch) | |
tree | d99ca21591a2528ac4546b64c8f703b0fc6dac34 /libcrypt | |
parent | 6a9087f96b69f1b8cea5cee76a27784d2b131cd2 (diff) | |
download | uClibc-alpine-11975abb2c891e563dbed51a52c050ea0b05b8a4.tar.bz2 uClibc-alpine-11975abb2c891e563dbed51a52c050ea0b05b8a4.tar.xz |
- remove old-style definitions. No object-code changes.
Diffstat (limited to 'libcrypt')
-rw-r--r-- | libcrypt/md5.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libcrypt/md5.c b/libcrypt/md5.c index 95286bfba..5580d21ff 100644 --- a/libcrypt/md5.c +++ b/libcrypt/md5.c @@ -275,13 +275,9 @@ static void __md5_Final ( unsigned char digest[16], struct MD5Context *context) /* MD5 basic transformation. Transforms state based on block. */ -static void -__md5_Transform (state, block) - u_int32_t state[4]; - const unsigned char block[64]; +static void __md5_Transform (u_int32_t state[4], const unsigned char block[64]) { u_int32_t a, b, c, d, x[16]; - #if MD5_SIZE_OVER_SPEED > 1 u_int32_t temp; const char *ps; |