reactos/reactos/lib/crt/io/telli64.c
Gunnar Dalsnes b6a8b98ef0 build msvcrt and crtdll from same source via lib\crt
fix problem with scanf/printf reading/printing doubles

svn path=/trunk/; revision=13342
2005-01-27 21:18:04 +00:00

11 lines
148 B
C

#include <msvcrt/errno.h>
#include <msvcrt/io.h>
/*
* @implemented
*/
__int64 _telli64(int _file)
{
return _lseeki64(_file, 0, SEEK_CUR);
}