repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix config file path
[AROS.git]
/
compiler
/
clib
/
ftello.c
blob
1d41bef499918b8133dcaa2a787d7e1b4d048ae3
1
#include <stdio.h>
2
3
/* FIXME: add autodoc */
4
off_t
ftello
(
FILE
*
stream
)
5
{
6
/* TODO: implement ftello() */
7
return
ftell
(
stream
);
8
}