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