From: Henrik Lindström Date: Sun, 2 Jun 2024 12:07:21 +0000 (+0200) Subject: Fix implicit my_llseek declaration error when targeting musl libc X-Git-Tag: v1.47.2-rc1~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bb33e3b0c490b2798dab9ef25459b399075c1ec;p=thirdparty%2Fe2fsprogs.git Fix implicit my_llseek declaration error when targeting musl libc Signed-off-by: Henrik Lindström Link: https://lore.kernel.org/r/20240602120721.387561-1-henrik@lxm.se Signed-off-by: Theodore Ts'o --- diff --git a/lib/blkid/llseek.c b/lib/blkid/llseek.c index 59298646..edb64320 100644 --- a/lib/blkid/llseek.c +++ b/lib/blkid/llseek.c @@ -52,7 +52,7 @@ extern long long llseek(int fd, long long offset, int origin); #if SIZEOF_LONG == SIZEOF_LONG_LONG -#define llseek lseek +#define my_llseek lseek #else /* SIZEOF_LONG != SIZEOF_LONG_LONG */