kernel: Make GetTickCount call NtGetTickCount.
diff --git a/dlls/kernel/kernel_main.c b/dlls/kernel/kernel_main.c
index a78439e..ed9fe60 100644
--- a/dlls/kernel/kernel_main.c
+++ b/dlls/kernel/kernel_main.c
@@ -59,8 +59,6 @@
 };
 static CRITICAL_SECTION ldt_section = { &critsect_debug, -1, 0, 0, 0, 0 };
 
-static DWORD server_start_time;
-
 /***********************************************************************
  *           locking for LDT routines
  */
@@ -106,10 +104,6 @@
 static BOOL process_attach(void)
 {
     SYSTEM_INFO si;
-    SYSTEM_TIMEOFDAY_INFORMATION sti;
-
-    NtQuerySystemInformation( SystemTimeOfDayInformation, &sti, sizeof(sti), NULL );
-    RtlTimeToSecondsSince1970( &sti.liKeBootTime, &server_start_time );
 
     /* FIXME: should probably be done in ntdll */
     GetSystemInfo( &si );
@@ -230,7 +224,5 @@
  */
 DWORD WINAPI GetTickCount(void)
 {
-    struct timeval t;
-    gettimeofday( &t, NULL );
-    return ((t.tv_sec - server_start_time) * 1000) + (t.tv_usec / 1000);
+    return NtGetTickCount();
 }