update for HEAD-2003091401
[reactos.git] / lib / crtdll / 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 _llseek((HFILE)filehnd(_fildes),_offset,_whence);
12 }