1 --- ppp-2.4.5.orig/pppdump/ppp-comp.h 2009-11-16 23:26:07.000000000 +0100
2 +++ ppp-2.4.5/pppdump/ppp-comp.h 2014-03-17 16:13:08.000000000 +0100
3 @@ -58,21 +58,21 @@ struct compressor {
4 int compress_proto; /* CCP compression protocol number */
6 /* Allocate space for a decompressor (receive side) */
7 - void *(*decomp_alloc) __P((u_char *options, int opt_len));
8 + void *(*decomp_alloc) (u_char *options, int opt_len);
9 /* Free space used by a decompressor */
10 - void (*decomp_free) __P((void *state));
11 + void (*decomp_free) (void *state);
12 /* Initialize a decompressor */
13 - int (*decomp_init) __P((void *state, u_char *options, int opt_len,
14 - int unit, int hdrlen, int mru, int debug));
15 + int (*decomp_init) (void *state, u_char *options, int opt_len,
16 + int unit, int hdrlen, int mru, int debug);
17 /* Reset a decompressor */
18 - void (*decomp_reset) __P((void *state));
19 + void (*decomp_reset) (void *state);
20 /* Decompress a packet. */
21 - int (*decompress) __P((void *state, u_char *mp, int inlen,
22 - u_char *dmp, int *outlen));
23 + int (*decompress) (void *state, u_char *mp, int inlen,
24 + u_char *dmp, int *outlen);
25 /* Update state for an incompressible packet received */
26 - void (*incomp) __P((void *state, u_char *mp, int len));
27 + void (*incomp) (void *state, u_char *mp, int len);
28 /* Return decompression statistics */
29 - void (*decomp_stat) __P((void *state, struct compstat *stats));
30 + void (*decomp_stat) (void *state, struct compstat *stats);