b21c29b4fb971cc6646f1be1626b40e0e4fd3a97
[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 /*
7  * @implemented
8  */
9 off_t _tell(int _file)
10 {
11     return _lseek(_file, 0, SEEK_CUR);
12 }