From d29a42b35943690789e89e16cb17fd03b07f93c8 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 2 Sep 2008 05:33:58 +0000 Subject: Stop using old-style function definitions. --- cpukit/zlib/inftrees.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'cpukit/zlib/inftrees.c') diff --git a/cpukit/zlib/inftrees.c b/cpukit/zlib/inftrees.c index 8a9c13ff03..86f011a751 100644 --- a/cpukit/zlib/inftrees.c +++ b/cpukit/zlib/inftrees.c @@ -29,13 +29,13 @@ const char inflate_copyright[] = table index bits. It will differ if the request is greater than the longest code or if it is less than the shortest code. */ -int inflate_table(type, lens, codes, table, bits, work) -codetype type; -unsigned short FAR *lens; -unsigned codes; -code FAR * FAR *table; -unsigned FAR *bits; -unsigned short FAR *work; +int inflate_table( + codetype type, + unsigned short FAR *lens, + unsigned codes, + code FAR * FAR *table, + unsigned FAR *bits, + unsigned short FAR *work) { unsigned len; /* a code's length in bits */ unsigned sym; /* index of code symbols */ -- cgit v1.2.3