summaryrefslogtreecommitdiff
path: root/src/z-virt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/z-virt.h')
-rw-r--r--src/z-virt.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/z-virt.h b/src/z-virt.h
index 58aed382..952e2d86 100644
--- a/src/z-virt.h
+++ b/src/z-virt.h
@@ -68,10 +68,6 @@ extern "C" {
(memset((char*)(P),0,SIZE(T)))
-/* Load an array of type T[N], at location P1, from another, at location P2 */
-#define C_COPY(P1,P2,N,T) \
- (memcpy((char*)(P1),(char*)(P2),C_SIZE(N,T)))
-
/* Load a thing of type T, at location P1, from another, at location P2 */
#define COPY(P1,P2,T) \
(memcpy((char*)(P1),(char*)(P2),SIZE(T)))