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: Add new APIs tc[gs]etwinsize()
[newlib-cygwin.git]
/
newlib
/
libc
/
sys
/
sysmec
/
lseek.c
blob
dad6c39a8358297cd3566b1b018966916d3ef151
1
#include <_ansi.h>
2
#include <sys/types.h>
3
#include <sys/stat.h>
4
#include <sys/unistd.h>
5
#include
"sys/syscall.h"
6
7
int
errno
;
8
9
int
__trap0
();
10
11
#define TRAP0(f, p1, p2, p3) __trap0(f, (p1), (p2), (p3))
12
13
off_t
14
_lseek
(
int
file
,
15
off_t ptr
,
16
int
dir
)
17
{
18
return
TRAP0
(
SYS_lseek
,
file
,
ptr
,
dir
);
19
}