diff options
author | hunt <hunt> | 2005-08-24 04:42:45 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-08-24 04:42:45 +0000 |
commit | 856b5264e82294dd8dfe000f22d19d8535aeb754 (patch) | |
tree | 61633fa48e54bc81755c396fa0bfb9936475634d /runtime/runtime.h | |
parent | dbaa3a2282ae75c6b530cbb0b32d874838885563 (diff) | |
download | systemtap-steved-856b5264e82294dd8dfe000f22d19d8535aeb754.tar.gz systemtap-steved-856b5264e82294dd8dfe000f22d19d8535aeb754.tar.xz systemtap-steved-856b5264e82294dd8dfe000f22d19d8535aeb754.zip |
2005-08-23 Martin Hunt <hunt@redhat.com>
* runtime.h: Add a prototype for _stp_dbug().
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 |