Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / syscalls / syslseek.c
blob4d5edd0f388279865acdda82bc5bcc3449e8eb65
1 /* connector for lseek */
3 #include <reent.h>
4 #include <unistd.h>
6 off_t
7 lseek (int fd,
8 off_t pos,
9 int whence)
11 return _lseek_r (_REENT, fd, pos, whence);