Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / misc / brs / patches / patch-ad
blob19ebf585c7f09c4b50728f45bf01c0d53c9d47e1
1 $NetBSD: patch-ad,v 1.1 2004/08/16 11:54:20 salo Exp $
3 --- compresslib.c.orig  1989-09-15 03:34:02.000000000 +0000
4 +++ compresslib.c
5 @@ -43,7 +43,7 @@
6  |
7  \*----------------------------------------------------------------------*/
8  
10 +#include <string.h>
12  #define        min(a,b)        ((a>b) ? b : a)
14 @@ -112,7 +112,7 @@
15  #ifdef PBITS           /* Preferred BITS for this memory size */
16  # ifndef BITS
17  #  define BITS PBITS
18 -# endif BITS
19 +# endif /* BITS */
20  #endif /* PBITS */
22  #if BITS == 16
23 @@ -360,7 +360,7 @@ char_type *inb;
27 -cmp_decompress( inb, outb, insize )
28 +cmp_decompress( char_type *inb, char_type *outb, int insize )
29  /*----------------------------------------------------------------------
30  |   NAME:
31  |       cmp_decompress
32 @@ -392,10 +392,6 @@ cmp_decompress( inb, outb, insize )
33  |              worked from stdin to stdout.
34  |
35  \*----------------------------------------------------------------------*/
37 -char_type *inb;
38 -char_type *outb;
39 -int insize;
40  {
41      register char_type *stackp;
42      register int finchar;