diff options
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r-- | runtime/runtime.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h index 1df196de..44873ee9 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -36,6 +36,7 @@ * @param args A variable number of args in a format like printf. * @ingroup io */ +static void _stp_dbug (char *func, int line, const char *fmt, ...); #define dbug(args...) _stp_dbug(__FUNCTION__, __LINE__, args) #define kbug(args...) {printk("%s:%d ",__FUNCTION__, __LINE__); printk(args); } #else |