From 7ea56c0db14d4be2dbcf95a9156bde1f5852dec8 Mon Sep 17 00:00:00 2001 From: "build@apk-groulx" Date: Sun, 6 Jun 2021 22:47:05 +0000 Subject: [PATCH] Attempt to fix musl build --- src/chains.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/chains.c b/src/chains.c index c54bfff..57b84d5 100644 --- a/src/chains.c +++ b/src/chains.c @@ -284,7 +284,11 @@ int open(const char *pathname, int flags, ...) } } +#ifdef __GLIBC__i int ioctl(int fd, ioctl_request_t request, ...) +#else +int ioctl(int fd, int request, ...) +#endif { /* * FreeBSD needs ioctl with varargs. However I have no idea how to "forward" -- 2.30.2