Whamcloud - gitweb
Fix implicit my_llseek declaration error when targeting musl libc
authorHenrik Lindström <henrik@lxm.se>
Sun, 2 Jun 2024 12:07:21 +0000 (14:07 +0200)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 24 Oct 2024 23:01:38 +0000 (19:01 -0400)
Signed-off-by: Henrik Lindström <henrik@lxm.se>
Link: https://lore.kernel.org/r/20240602120721.387561-1-henrik@lxm.se
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
lib/blkid/llseek.c

index 5929864..edb6432 100644 (file)
@@ -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 */