mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 08:52:57 +00:00
11 lines
148 B
C
11 lines
148 B
C
#include <msvcrt/errno.h>
|
|
#include <msvcrt/io.h>
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
__int64 _telli64(int _file)
|
|
{
|
|
return _lseeki64(_file, 0, SEEK_CUR);
|
|
}
|