update for HEAD-2003091401
[reactos.git] / lib / msvcrt / io / lseek.c
1 #include <windows.h>
2 #include <msvcrt/io.h>
3 #include <msvcrt/internal/file.h>
4
5
6 /*
7  * @implemented
8  */
9 long _lseek(int _fildes, long _offset, int _whence)
10 {
11     return (SetFilePointer((HANDLE)filehnd(_fildes), _offset, NULL, _whence));
12 }