MdeModulePkg BrotliCustomDecompressLib: Remove the duplicated functions

The same functions have been defined in BrotliDecUefiSupport.c.

Signed-off-by: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Hao A Wu <hao.a.wu@intel.com>
Cc: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
This commit is contained in:
gaoliming 2020-12-30 14:30:22 +08:00 committed by mergify[bot]
parent df77614e54
commit 67e0e4caa5
1 changed files with 0 additions and 23 deletions

View File

@ -7,29 +7,6 @@
**/
#include <BrotliDecompressLibInternal.h>
/**
Dummy malloc function for compiler.
**/
VOID *
BrDummyMalloc (
IN size_t Size
)
{
ASSERT (FALSE);
return NULL;
}
/**
Dummy free function for compiler.
**/
VOID
BrDummyFree (
IN VOID * Ptr
)
{
ASSERT (FALSE);
}
/**
Allocation routine used by BROTLI decompression.