1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| /** @file
| AML Include file
|
| Copyright (c) 2019 - 2020, Arm Limited. All rights reserved.<BR>
|
| SPDX-License-Identifier: BSD-2-Clause-Patent
| **/
|
| #ifndef AML_INCLUDE_H_
| #define AML_INCLUDE_H_
|
| #include <Base.h>
| #include <Library/BaseLib.h>
| #include <Library/BaseMemoryLib.h>
| #include <Library/DebugLib.h>
| #include <Library/MemoryAllocationLib.h>
|
| #endif // AML_INCLUDE_H_
|
|