update for HEAD-2003021201
[reactos.git] / lib / msvcrt / io / lseek.c
index 4f03d43..5e20b08 100644 (file)
@@ -5,13 +5,5 @@
 
 long _lseek(int _fildes, long _offset, int _whence)
 {
-  return (SetFilePointer((HANDLE)filehnd(_fildes), _offset, NULL, _whence));
-}
-
-__int64 _lseeki64(int _fildes, __int64 _offset, int _whence)
-{
-  ULONG lo_pos, hi_pos;
-
-  lo_pos = SetFilePointer((HANDLE)filehnd(_fildes), _offset, &hi_pos, _whence);
-  return((((__int64)hi_pos) << 32) + lo_pos);
+    return (SetFilePointer((HANDLE)filehnd(_fildes), _offset, NULL, _whence));
 }