Much USB code for ARM USB support
[minix3.git] / minix / include / ddekit / panic.h
blob76b1666fc170f416c76c79b4bcbb1190c881ec3d
1 #ifndef _DDEKIT_PANIC_H
2 #define _DDEKIT_PANIC_H
3 #include <ddekit/ddekit.h>
4 #include <stdarg.h>
6 /** \defgroup DDEKit_util */
8 /** Panic - print error message and enter the kernel debugger.
9 * \ingroup DDEKit_util
11 void ddekit_panic(char *fmt, ...);
13 /** Print a debug message.
14 * \ingroup DDEKit_util
16 void ddekit_debug(char *fmt, ...);
18 #endif