36b2126a4f6f3cccf8b1146149664401e5167560
[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 long _lseek(int _fildes, long _offset, int _whence)
7 {
8         return _llseek((HFILE)filehnd(_fildes),_offset,_whence);
9 }