view osdep/ftello.c @ 22516:046c2f8e4c13

Remove -DCODECS2HTML from .depend creation.
author diego
date Mon, 12 Mar 2007 18:33:50 +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;
}