summaryrefslogtreecommitdiffstats
path: root/cpukit/libmd/md5.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-02 05:16:26 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-02 05:16:26 +0000
commitee0c82f4138ba42f5921e95e1d4ed776d5c77d00 (patch)
tree2ab8e820ec69813cb11bda30bfceb9c39d57c1b6 /cpukit/libmd/md5.c
parent2008-08-02 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-ee0c82f4138ba42f5921e95e1d4ed776d5c77d00.tar.bz2
Add missing prototypes.
Diffstat (limited to 'cpukit/libmd/md5.c')
-rw-r--r--cpukit/libmd/md5.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libmd/md5.c b/cpukit/libmd/md5.c
index afabb6028e..cf7ee12132 100644
--- a/cpukit/libmd/md5.c
+++ b/cpukit/libmd/md5.c
@@ -49,7 +49,7 @@
*/
/* forward declaration */
-static void Transform ();
+static void Transform (UINT4 *buf, UINT4 *in);
static unsigned char PADDING[64] = {
0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
@@ -201,9 +201,9 @@ MD5_CTX *mdContext;
/* Basic MD5 step. Transforms buf based on in.
*/
-static void Transform (buf, in)
-UINT4 *buf;
-UINT4 *in;
+static void Transform (
+ UINT4 *buf,
+ UINT4 *in )
{
UINT4 a = buf[0], b = buf[1], c = buf[2], d = buf[3];