5e20b08bd945784de8f938a268b2e173b1aa1570
[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 long _lseek(int _fildes, long _offset, int _whence)
7 {
8     return (SetFilePointer((HANDLE)filehnd(_fildes), _offset, NULL, _whence));
9 }