]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliDecUefiSupport.c
MdeModulePkg/BrotliCustomDecompressLib: Make brotli a submodule
[mirror_edk2.git] / MdeModulePkg / Library / BrotliCustomDecompressLib / BrotliDecUefiSupport.c
1 /** @file
2 Implements for functions declared in BrotliDecUefiSupport.h
3
4 Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8 #include <BrotliDecUefiSupport.h>
9
10 /**
11 Dummy malloc function for compiler.
12 **/
13 VOID *
14 BrDummyMalloc (
15 IN size_t Size
16 )
17 {
18 ASSERT (FALSE);
19 return NULL;
20 }
21
22 /**
23 Dummy free function for compiler.
24 **/
25 VOID
26 BrDummyFree (
27 IN VOID * Ptr
28 )
29 {
30 ASSERT (FALSE);
31 }