- Implement super-simple KeSweepICache that always flushes the entire instruction...
[reactos.git] / reactos / lib / rtl / mem.c
index 0704f52..6927f54 100644 (file)
@@ -146,21 +146,6 @@ RtlMoveMemory(PVOID Destination,
     memmove(Destination, Source, Length);
 }
 
-
-/*
-* @implemented
-*/
-VOID
-FASTCALL
-RtlPrefetchMemoryNonTemporal(IN PVOID Source,
-                             IN SIZE_T Length)
-{
-    /* By nature of prefetch, this is non-portable. */
-    (void)Source;
-    (void)Length;
-}
-
-
 #undef RtlZeroMemory
 /*
  * @implemented