blob: d28a781f8a59a0bd201c2466a9ae09f93285060e [file] [log] [blame]
#include <sys/types.h>
#include <errno.h>
off_t
_lseek(int file, off_t ptr, int dir)
{
errno = ENOSYS;
return -1;
}