[KMIXER]
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 24 Jul 2010 14:49:46 +0000 (14:49 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 24 Jul 2010 14:49:46 +0000 (14:49 +0000)
- Remove memset and memcpy implementations from pin.c

svn path=/trunk/; revision=48230

reactos/drivers/wdm/audio/filters/kmixer/pin.c

index f52a755..8d37b15 100644 (file)
@@ -731,30 +731,3 @@ void free(PVOID Block)
 {
     ExFreePool(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;
-}