prepare move old cruft
[reactos.git] / reactos / lib / crtdll / io / lseek.c
1 #include <precomp.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 }