repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
syscalls
/
syslseek.c
blob
4d5edd0f388279865acdda82bc5bcc3449e8eb65
1
/* connector for lseek */
2
3
#include <reent.h>
4
#include <unistd.h>
5
6
off_t
7
lseek
(
int
fd
,
8
off_t pos
,
9
int
whence
)
10
{
11
return
_lseek_r
(
_REENT
,
fd
,
pos
,
whence
);
12
}