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
Use the detected no-builtin flag. (NicJA)
[AROS.git]
/
compiler
/
posixc
/
ftello.c
blob
44a7f523892d935228722d4bb9c354d44c8b21c7
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <stdio.h>
7
8
/* FIXME: add autodoc */
9
off_t
ftello
(
FILE
*
stream
)
10
{
11
/* TODO: implement ftello() */
12
return
ftell
(
stream
);
13
}