repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
riscv32: add dlsym
[musl.git]
/
src
/
stdio
/
__stdio_seek.c
blob
326ab9bce48ed38f5f56e059b9312efb0328acbe
1
#include
"stdio_impl.h"
2
#include <unistd.h>
3
4
off_t
__stdio_seek
(
FILE
*
f
,
off_t off
,
int
whence
)
5
{
6
return
__lseek
(
f
->
fd
,
off
,
whence
);
7
}