diff options
Diffstat (limited to 'sys/kern/imgact_gzip.c')
-rw-r--r-- | sys/kern/imgact_gzip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/imgact_gzip.c b/sys/kern/imgact_gzip.c index 3516daa..d0c98fe 100644 --- a/sys/kern/imgact_gzip.c +++ b/sys/kern/imgact_gzip.c @@ -57,10 +57,10 @@ struct imgact_gzip { u_long virtual_offset, file_offset, file_end, bss_size; }; -static int exec_gzip_imgact __P((struct image_params *imgp)); -static int NextByte __P((void *vp)); -static int do_aout_hdr __P((struct imgact_gzip *)); -static int Flush __P((void *vp, u_char *, u_long siz)); +static int exec_gzip_imgact(struct image_params *imgp); +static int NextByte(void *vp); +static int do_aout_hdr(struct imgact_gzip *); +static int Flush(void *vp, u_char *, u_long siz); static int exec_gzip_imgact(imgp) |