compiler/clib: #error if not cpu specific implementation of setjmp(), longjmp(),...
[AROS.git] / compiler / clib / ftello.c
blob1d41bef499918b8133dcaa2a787d7e1b4d048ae3
1 #include <stdio.h>
3 /* FIXME: add autodoc */
4 off_t ftello(FILE *stream)
6 /* TODO: implement ftello() */
7 return ftell(stream);