| 26 | typedef off_t off64_t; |
| 27 | |
| 28 | static inline off64_t lseek64(int fd, off64_t offset, int whence) { |
| 29 | return lseek(fd, offset, whence); |
| 30 | } |
| 31 | |
| 32 | static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) { |
| 33 | return pread(fd, buf, nbytes, offset); |
no outgoing calls
no test coverage detected