Merge /u/esben/gnu-efi/ branch intptr-t-fix into master
[syslinux-gnu-efi.git] / lib / debug.c
blobb63512368145d65a4b46b5cabce4ac22783751ad
1 /*++
3 Copyright (c) 1998 Intel Corporation
5 Module Name:
7 debug.c
9 Abstract:
11 Debug library functions
15 Revision History
17 --*/
19 #include "lib.h"
24 // Declare runtime functions
31 INTN
32 DbgAssert (
33 IN CONST CHAR8 *FileName,
34 IN INTN LineNo,
35 IN CONST CHAR8 *Description
38 DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
40 BREAKPOINT();
41 return 0;