xref: /netbsd-src/sys/arch/ews4800mips/include/db_machdep.h (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1 /*	$NetBSD: db_machdep.h,v 1.2 2011/07/09 16:58:04 matt Exp $	*/
2 
3 #include <mips/db_machdep.h>
4 
5 #ifdef DDB
6 void __db_print_symbol(db_expr_t);
7 #define	DB_PRINT_CALLER()						\
8 	__db_print_symbol((db_expr_t)__builtin_return_address(0))
9 #else
10 #define	DB_PRINT_CALLER()	((void)0)
11 #endif
12