- Implement RtlPrefectMemoryNonTemporal. Patch by Patrick Baggett <baggett.patrick...
[reactos.git] / reactos / lib / rtl / mem.c
index 85ceba3..52c54e1 100644 (file)
@@ -140,7 +140,7 @@ RtlMoveMemory (
 }
 
 /*
-* @unimplemented
+* @implemented
 */
 VOID
 FASTCALL
@@ -149,7 +149,9 @@ RtlPrefetchMemoryNonTemporal(
        IN SIZE_T Length
        )
 {
-       UNIMPLEMENTED;
+       /* By nature of prefetch, this is non-portable. */
+       (void)Source;
+       (void)Length;
 }