repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libroot/posix/stdio: Remove unused portions.
[haiku.git]
/
src
/
system
/
libroot
/
posix
/
stdio
/
_fseek.c
blob
ebcd944fd73675a8088abcd86b96d74f8d1a99d3
1
/*
2
** Copyright 2005, Jérôme Duval. All rights reserved.
3
** Distributed under the terms of the Haiku License.
4
*/
5
6
#include <stdio.h>
7
8
int
9
_fseek
(
FILE
*
stream
,
fpos_t
offset
,
int
seekType
)
10
{
11
return
fseeko
(
stream
,
offset
,
seekType
);
12
}