summaryrefslogtreecommitdiff
path: root/src/pal/src/memory/heap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/src/memory/heap.cpp')
-rw-r--r--src/pal/src/memory/heap.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/pal/src/memory/heap.cpp b/src/pal/src/memory/heap.cpp
index 5757da83b7..ccee77ff50 100644
--- a/src/pal/src/memory/heap.cpp
+++ b/src/pal/src/memory/heap.cpp
@@ -63,28 +63,6 @@ RtlMoveMemory(
/*++
Function:
- RtlZeroMemory
-
-See MSDN doc.
---*/
-VOID
-PALAPI
-RtlZeroMemory(
- PVOID Destination,
- SIZE_T Length
-)
-{
- PERF_ENTRY(RtlZeroMemory);
- ENTRY("RtlZeroMemory(Destination:%p, Length:%x)\n", Destination, Length);
-
- memset(Destination, 0, Length);
-
- LOGEXIT("RtlZeroMemory returning.\n");
- PERF_EXIT(RtlZeroMemory);
-}
-
-/*++
-Function:
HeapCreate
See MSDN doc.