branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / 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 }