update for HEAD-2003091401
[reactos.git] / lib / crtdll / io / lseek.c
index c585445..7fb4f23 100644 (file)
@@ -1,9 +1,12 @@
 #include <windows.h>
-#include <crtdll/io.h>
-#include <crtdll/internal/file.h>
+#include <msvcrt/io.h>
+#include <msvcrt/internal/file.h>
 
+
+/*
+ * @implemented
+ */
 long _lseek(int _fildes, long _offset, int _whence)
 {
        return _llseek((HFILE)filehnd(_fildes),_offset,_whence);
 }
-