summaryrefslogtreecommitdiffstats
path: root/sys/sys/inflate.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/inflate.h')
-rw-r--r--sys/sys/inflate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/inflate.h b/sys/sys/inflate.h
index 05ccf17..528b536 100644
--- a/sys/sys/inflate.h
+++ b/sys/sys/inflate.h
@@ -29,10 +29,10 @@ struct inflate {
void *gz_private;
/* Fetch next character to be uncompressed */
- int (*gz_input) __P((void *));
+ int (*gz_input)(void *);
/* Dispose of uncompressed characters */
- int (*gz_output) __P((void *, u_char *, u_long));
+ int (*gz_output)(void *, u_char *, u_long);
/* Private part */
u_long gz_bb; /* bit buffer */
@@ -46,7 +46,7 @@ struct inflate {
unsigned gz_wp;
};
-int inflate __P((struct inflate *));
+int inflate(struct inflate *);
#endif /* _KERNEL || KZIP */
OpenPOWER on IntegriCloud