]> git.proxmox.com Git - mirror_edk2.git/blobdiff - OldMdePkg/Library/DxeMemoryLib/MemLib.c
Retiring the ANT/JAVA build and removing the older EDK II packages that required...
[mirror_edk2.git] / OldMdePkg / Library / DxeMemoryLib / MemLib.c
diff --git a/OldMdePkg/Library/DxeMemoryLib/MemLib.c b/OldMdePkg/Library/DxeMemoryLib/MemLib.c
deleted file mode 100644 (file)
index 37182db..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/** @file\r
-  Base Memory Library.\r
-\r
-  Copyright (c) 2006, Intel Corporation<BR>\r
-  All rights reserved. This program and the accompanying materials\r
-  are licensed and made available under the terms and conditions of the BSD License\r
-  which accompanies this distribution.  The full text of the license may be found at\r
-  http://opensource.org/licenses/bsd-license.php\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-\r
-  Module Name:  MemLib.c\r
-\r
-**/\r
-\r
-#include "MemLibInternals.h"\r
-\r
-VOID *\r
-EFIAPI\r
-InternalMemCopyMem (\r
-  OUT     VOID                      *Destination,\r
-  IN      CONST VOID                *Source,\r
-  IN      UINTN                     Length\r
-  )\r
-{\r
-  gBS->CopyMem (Destination, (VOID*)Source, Length);\r
-  return Destination;\r
-}\r
-\r
-VOID *\r
-EFIAPI\r
-InternalMemSetMem (\r
-  OUT     VOID                      *Buffer,\r
-  IN      UINTN                     Size,\r
-  IN      UINT8                     Value\r
-  )\r
-{\r
-  gBS->SetMem (Buffer, Size, Value);\r
-  return Buffer;\r
-}\r