update for HEAD-2003021201
[reactos.git] / lib / crtdll / io / tell.c
index ce53df0..990a477 100644 (file)
@@ -1,10 +1,9 @@
 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/errno.h>
-#include <crtdll/io.h>
+#include <msvcrt/errno.h>
+#include <msvcrt/io.h>
 
 
-off_t
-_tell(int _file)
+off_t _tell(int _file)
 {
   return _lseek(_file, 0, SEEK_CUR);
 }