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