_kern_seek
extern off_t _kern_seek(int fd, off_t pos, int seekType);
extern off_t _kern_seek(int fd, off_t pos, int seekType);
return _kern_seek(get_fd(), offset, seekMode);
return _kern_seek(get_fd(), 0, SEEK_CUR);
return _kern_seek(get_fd(), offset, seekMode);
return _kern_seek(get_fd(), 0, SEEK_CUR);
off_t result = _kern_seek(fd, pos, whence);
fssh_off_t _kern_seek(int fd, fssh_off_t pos, int seekType);