Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / msvcrt / io / tell.c
index 3d7d95b..0e10186 100644 (file)
@@ -5,10 +5,5 @@
 
 off_t _tell(int _file)
 {
-  return _lseek(_file, 0, SEEK_CUR);
-}
-
-__int64 _telli64(int _file)
-{
-  return _lseeki64(_file, 0, SEEK_CUR);
+    return _lseek(_file, 0, SEEK_CUR);
 }