:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / msvcrt / io / tell.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/errno.h>
3 #include <msvcrt/io.h>
4
5
6 off_t _tell(int _file)
7 {
8   return _lseek(_file, 0, SEEK_CUR);
9 }
10
11 __int64 _telli64(int _file)
12 {
13   return _lseeki64(_file, 0, SEEK_CUR);
14 }