From 3bb2ea0d09b46ddadb0cc73eeec5381fb86ab923 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 24 Jul 2010 14:49:46 +0000 Subject: [PATCH] [KMIXER] - Remove memset and memcpy implementations from pin.c svn path=/trunk/; revision=48230 --- .../drivers/wdm/audio/filters/kmixer/pin.c | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/reactos/drivers/wdm/audio/filters/kmixer/pin.c b/reactos/drivers/wdm/audio/filters/kmixer/pin.c index f52a7557034..8d37b1548f9 100644 --- a/reactos/drivers/wdm/audio/filters/kmixer/pin.c +++ b/reactos/drivers/wdm/audio/filters/kmixer/pin.c @@ -731,30 +731,3 @@ void free(PVOID Block) { ExFreePool(Block); } - -void *memset( - void* dest, - int c, - size_t count) -{ - ULONG Index; - PUCHAR Block = (PUCHAR)dest; - - for(Index = 0; Index < count; Index++) - Block[Index] = c; - - return dest; -} - -void * memcpy( - void* dest, - const void* src, - size_t count) -{ - ULONG Index; - PUCHAR Src = (PUCHAR)src, Dest = (PUCHAR)dest; - - for(Index = 0; Index < count; Index++) - Dest[Index] = Src[Index]; - return dest; -}