diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-19 21:25:46 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-19 21:25:46 +0000 |
commit | 357e37e023059920b1f80494e489797e2f69a3dd (patch) | |
tree | 7ea68f3b5c452a55df6c05b903dae3ac1e8f71f9 /sys/kern/inflate.c | |
parent | ca2e5c188ee68045b54a86bfefcfd4a75e174221 (diff) | |
download | FreeBSD-src-357e37e023059920b1f80494e489797e2f69a3dd.zip FreeBSD-src-357e37e023059920b1f80494e489797e2f69a3dd.tar.gz |
Remove __P.
Diffstat (limited to 'sys/kern/inflate.c')
-rw-r--r-- | sys/kern/inflate.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/kern/inflate.c b/sys/kern/inflate.c index c101b7a..4e6ac66 100644 --- a/sys/kern/inflate.c +++ b/sys/kern/inflate.c @@ -274,14 +274,14 @@ struct huft { /* Function prototypes */ -static int huft_build __P((struct inflate *, unsigned *, unsigned, unsigned, const ush *, const ush *, struct huft **, int *)); -static int huft_free __P((struct inflate *, struct huft *)); -static int inflate_codes __P((struct inflate *, struct huft *, struct huft *, int, int)); -static int inflate_stored __P((struct inflate *)); -static int xinflate __P((struct inflate *)); -static int inflate_fixed __P((struct inflate *)); -static int inflate_dynamic __P((struct inflate *)); -static int inflate_block __P((struct inflate *, int *)); +static int huft_build(struct inflate *, unsigned *, unsigned, unsigned, const ush *, const ush *, struct huft **, int *); +static int huft_free(struct inflate *, struct huft *); +static int inflate_codes(struct inflate *, struct huft *, struct huft *, int, int); +static int inflate_stored(struct inflate *); +static int xinflate(struct inflate *); +static int inflate_fixed(struct inflate *); +static int inflate_dynamic(struct inflate *); +static int inflate_block(struct inflate *, int *); /* The inflate algorithm uses a sliding 32K byte window on the uncompressed stream to find repeated byte strings. This is implemented here as a |