summaryrefslogtreecommitdiffstats
path: root/cpukit/zlib/crc32.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-03 04:27:50 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-03 04:27:50 +0000
commitb5cc0592f7cb5a0575836aa8f5630ce0b7b4fbe2 (patch)
tree5a978fdf6f25bdd84838282dc28b91a43c486f9f /cpukit/zlib/crc32.c
parent2008-08-02 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b5cc0592f7cb5a0575836aa8f5630ce0b7b4fbe2.tar.bz2
Add prototypes.
Diffstat (limited to 'cpukit/zlib/crc32.c')
-rw-r--r--cpukit/zlib/crc32.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/cpukit/zlib/crc32.c b/cpukit/zlib/crc32.c
index 51d5504035..cb5788f6a8 100644
--- a/cpukit/zlib/crc32.c
+++ b/cpukit/zlib/crc32.c
@@ -338,9 +338,9 @@ local unsigned long crc32_big(crc, buf, len)
#define GF2_DIM 32 /* dimension of GF(2) vectors (length of CRC) */
/* ========================================================================= */
-local unsigned long gf2_matrix_times(mat, vec)
- unsigned long *mat;
- unsigned long vec;
+local unsigned long gf2_matrix_times(
+ unsigned long *mat,
+ unsigned long vec )
{
unsigned long sum;
@@ -355,9 +355,9 @@ local unsigned long gf2_matrix_times(mat, vec)
}
/* ========================================================================= */
-local void gf2_matrix_square(square, mat)
- unsigned long *square;
- unsigned long *mat;
+local void gf2_matrix_square(
+ unsigned long *square,
+ unsigned long *mat)
{
int n;
@@ -366,10 +366,10 @@ local void gf2_matrix_square(square, mat)
}
/* ========================================================================= */
-uLong ZEXPORT crc32_combine(crc1, crc2, len2)
- uLong crc1;
- uLong crc2;
- z_off_t len2;
+uLong ZEXPORT crc32_combine(
+ uLong crc1,
+ uLong crc2,
+ z_off_t len2)
{
int n;
unsigned long row;