diff options
author | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-16 03:26:32 +0000 |
---|---|---|
committer | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-16 03:26:32 +0000 |
commit | 24de7645e857287d096b058f7a64fb7f618c0194 (patch) | |
tree | 85f7b9e88f09b201ac443309665b678f45154b7a /MdePkg/Library/UefiMemoryLib/MemLibGeneric.c | |
parent | 608fd3fd6159e8bcbf6f55926fc805e175d168eb (diff) | |
download | edk2-platforms-24de7645e857287d096b058f7a64fb7f618c0194.tar.xz |
Split wrapper functions into separate source files to reduce image code size
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@168 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiMemoryLib/MemLibGeneric.c')
-rw-r--r-- | MdePkg/Library/UefiMemoryLib/MemLibGeneric.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c b/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c index ef9f358a79..bda1f4992f 100644 --- a/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c +++ b/MdePkg/Library/UefiMemoryLib/MemLibGeneric.c @@ -20,23 +20,7 @@ **/
-/**
- Set Buffer to Value for Size bytes.
-
- @param Buffer Memory to set.
- @param Size Number of bytes to set
- @param Value Value of the set operation.
-
- @return Buffer
-
-**/
-VOID *
-EFIAPI
-InternalMemSetMem (
- OUT VOID *Buffer,
- IN UINTN Length,
- IN UINT8 Value
- );
+#include "MemLibInternals.h"
/**
Fills a target buffer with a 16-bit value, and returns the target buffer.
|