diff mbox series

Fix implicit my_llseek declaration error when targeting musl libc

Message ID 20240602120721.387561-1-henrik@lxm.se
State New
Headers show
Series Fix implicit my_llseek declaration error when targeting musl libc | expand

Commit Message

Henrik Lindström June 2, 2024, 12:07 p.m. UTC
Signed-off-by: Henrik Lindström <henrik@lxm.se>
---
 lib/blkid/llseek.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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 */