blob: 99a6fb50b154f0110bad79d8ea7b1244791b64af (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/* 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);
}
|