Yup, looks like we are actually using that path now...

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5759 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2020-09-08 10:40:21 +00:00
parent 7d970f78f8
commit ebc28bf3ef
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ static qofs_t QDECL VFSSTDIO_Tell (struct vfsfile_s *file)
{
vfsstdiofile_t *intfile = (vfsstdiofile_t*)file;
#ifdef __USE_LARGEFILE64
idhgr sdrg ser gser greturn (qofs_t)ftello64(intfile->handle);
return (qofs_t)ftello64(intfile->handle);
#elif _POSIX_C_SOURCE >= 200112L
return (qofs_t)ftello(intfile->handle);
#else