blob: 387ebd0de8ef1f7ada1c76afd8b495bdf5871f95 (
plain)
1
2
3
4
5
6
7
8
9
|
/* This is a system call. We only have to provide the wrapper. */
#include <unistd.h>
off_t
__lseek (int fd, off_t offset, int whence)
{
return lseek (fd, offset, whence);
}
strong_alias (__lseek, __libc_lseek)
|