branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / io / utime.c
index 90b9921..27da039 100644 (file)
@@ -1,8 +1,9 @@
-#include <crtdll/stdio.h>
-#include <crtdll/io.h>
-#include <crtdll/errno.h>
-#include <crtdll/sys/utime.h>
-#include <crtdll/internal/file.h>
+#include <msvcrt/stdio.h>
+#include <msvcrt/io.h>
+#include <msvcrt/errno.h>
+#include <msvcrt/sys/utime.h>
+#include <msvcrt/internal/file.h>
+
 
 int _utime(const char* filename, struct _utimbuf* buf)
 {
@@ -18,5 +19,4 @@ int _utime(const char* filename, struct _utimbuf* buf)
   if ( _close(fn) < 0 )
        return -1;
   return ret;
-  
 }