aboutsummaryrefslogtreecommitdiff
path: root/gnu-efi/gnu-efi-3.0/lib/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnu-efi/gnu-efi-3.0/lib/debug.c')
-rw-r--r--gnu-efi/gnu-efi-3.0/lib/debug.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/gnu-efi/gnu-efi-3.0/lib/debug.c b/gnu-efi/gnu-efi-3.0/lib/debug.c
new file mode 100644
index 0000000..e31e8d4
--- /dev/null
+++ b/gnu-efi/gnu-efi-3.0/lib/debug.c
@@ -0,0 +1,43 @@
+/*++
+
+Copyright (c) 1998 Intel Corporation
+
+Module Name:
+
+ debug.c
+
+Abstract:
+
+ Debug library functions
+
+
+
+Revision History
+
+--*/
+
+#include "lib.h"
+
+
+
+//
+// Declare runtime functions
+//
+
+//
+//
+//
+
+INTN
+DbgAssert (
+ IN CHAR8 *FileName,
+ IN INTN LineNo,
+ IN CHAR8 *Description
+ )
+{
+ DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
+
+ BREAKPOINT();
+ return 0;
+}
+