2020-02-12 11:08:15 +01:00
|
|
|
/** @file
|
|
|
|
Implements for functions declared in BrotliDecUefiSupport.h
|
|
|
|
|
|
|
|
Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
|
|
|
**/
|
|
|
|
#include <BrotliDecUefiSupport.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
Dummy malloc function for compiler.
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
BrDummyMalloc (
|
2021-12-05 23:54:02 +01:00
|
|
|
IN size_t Size
|
2020-02-12 11:08:15 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
ASSERT (FALSE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Dummy free function for compiler.
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
BrDummyFree (
|
2021-12-05 23:54:02 +01:00
|
|
|
IN VOID *Ptr
|
2020-02-12 11:08:15 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
ASSERT (FALSE);
|
|
|
|
}
|