Mercurial > mplayer.hg
view osdep/ftello.c @ 22692:2ccbb18bc99f
sync mga_vid.h to the one in the mga_vid repo.
removes one commented include and adds a define
no incompatible change
author | attila |
---|---|
date | Sun, 18 Mar 2007 10:52:41 +0000 |
parents | e268886eb13d |
children |
line wrap: on
line source
/* * ftello.c * 64-bit version of ftello() for systems which do not have it */ #include "config.h" #include <stdio.h> #include <sys/types.h> off_t ftello(FILE *stream) { fpos_t floc; if (fgetpos(stream, &floc) != 0) return -1; return floc; }