view osdep/ftello.c @ 23044:7d693457f85e

updated the ati vidix driver with the one from upstream vidix, it now supports much more GPUs (including all Radeon > 9600 and X series)
author ben
date Sun, 22 Apr 2007 13:25: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;
}