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: cygwin_GetCommandLineW/A: don't rely on __argv[0] content
[newlib-cygwin.git]
/
libgloss
/
iq2000
/
lseek.c
blob
339baea290d6e7435919242e791a785c3ac22568
1
#include <_ansi.h>
2
#include <sys/types.h>
3
#include <sys/stat.h>
4
#include <sys/unistd.h>
5
#include
"trap.h"
6
7
8
off_t
9
_lseek
(
int
file
,
10
off_t ptr
,
11
int
dir
)
12
{
13
return
TRAP0
(
SYS_lseek
,
file
,
ptr
,
dir
);
14
}