mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 06:31:22 +00:00

-critical.c: catch (more) invalid use -impl. sscanf (stolen from wine) crt: -use native mingw headers and not private copies of them -converted some routines to using tchar == impl. many missing unicode routines -impl. sscanf and friends correctly (stolen from wine) tchar.h: -added lotsa missin stuff svn path=/trunk/; revision=13608
12 lines
153 B
C
12 lines
153 B
C
#include <errno.h>
|
|
#include <io.h>
|
|
#include <stdio.h>
|
|
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
__int64 _telli64(int _file)
|
|
{
|
|
return _lseeki64(_file, 0, SEEK_CUR);
|
|
}
|