1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 12:45:20 +03:00
aports/community/ccl/remove-usage-of-lseek64.patch
2023-11-06 21:57:18 +00:00

14 lines
252 B
Diff

--- a/lisp-kernel/unix-calls.c
+++ b/lisp-kernel/unix-calls.c
@@ -66,11 +66,7 @@
int64_t
lisp_lseek(int fd, int64_t offset, int whence)
{
-#ifdef LINUX
- return lseek64(fd,offset,whence);
-#else
return lseek(fd,offset,whence);
-#endif
}
int