summaryrefslogtreecommitdiffstats
path: root/src/gzip.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2023-04-15 18:06:43 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2023-04-15 18:12:16 (EDT)
commit97acd4ee3c87c58876acf274839172566621cb66 (patch)
tree74fbb0534dfd544b41bdc329955121174b136bce /src/gzip.h
parente707a8fa42f8b9a2d75fd22678f7431ef1323589 (diff)
main: Cast function type
Diffstat (limited to 'src/gzip.h')
-rw-r--r--src/gzip.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gzip.h b/src/gzip.h
index 73c8340..7c81463 100644
--- a/src/gzip.h
+++ b/src/gzip.h
@@ -22,8 +22,10 @@
struct opkg_opk_gzip;
+typedef int (opkg_opk_gzip_read_func)(void *, char **, size_t *);
+
struct opkg_opk_gzip *
-opkg_opk_gzip_init(int (*read)(void *, char **, size_t *), void *user_data);
+opkg_opk_gzip_init(opkg_opk_gzip_read_func *read, void *user_data);
int
opkg_opk_gzip_read(struct opkg_opk_gzip *gzip, void *record);