mirror of
https://github.com/mpv-player/mpv
synced 2024-11-11 00:15:33 +01:00
7db81061d7
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21874 b3059339-0415-0410-9bf9-f77b7e298cf2
20 lines
256 B
C
20 lines
256 B
C
/*
|
|
* 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;
|
|
}
|