diff options
Diffstat (limited to 'MdePkg/Library/UefiDebugLibConOut/DebugLib.c')
-rw-r--r-- | MdePkg/Library/UefiDebugLibConOut/DebugLib.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/MdePkg/Library/UefiDebugLibConOut/DebugLib.c b/MdePkg/Library/UefiDebugLibConOut/DebugLib.c index 711f29c6d1..ebe00c7f35 100644 --- a/MdePkg/Library/UefiDebugLibConOut/DebugLib.c +++ b/MdePkg/Library/UefiDebugLibConOut/DebugLib.c @@ -13,9 +13,22 @@ **/
//
-// Include common header file for this module.
+// The package level header files this module uses
//
-#include "CommonHeader.h"
+#include <Uefi.h>
+//
+// The protocols, PPI and GUID defintions for this module
+//
+//
+// The Library classes this module consumes
+//
+#include <Library/DebugLib.h>
+#include <Library/UefiBootServicesTableLib.h>
+#include <Library/PrintLib.h>
+#include <Library/PcdLib.h>
+#include <Library/BaseLib.h>
+#include <Library/BaseMemoryLib.h>
+
//
// Define the maximum debug and assert message length that this library supports
|