mirror of https://github.com/acidanthera/audk.git
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:
parent
df77614e54
commit
67e0e4caa5
|
@ -7,29 +7,6 @@
|
||||||
**/
|
**/
|
||||||
#include <BrotliDecompressLibInternal.h>
|
#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.
|
Allocation routine used by BROTLI decompression.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue