diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-04 20:50:49 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-04 20:50:49 +0200 |
commit | 64c271ed3bd50ce5ffbf69108d75bb79d279e8d9 (patch) | |
tree | 8417630cd3731793524168df8187212b510231ea /utils.h | |
parent | 210b973708d62137b8283d43908292039056f415 (diff) |
rework debugging code, add debugging levels
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -4,16 +4,6 @@ #include <libubox/list.h> #include <libubox/avl.h> -#ifdef DEBUG -#define DPRINTF(format, ...) fprintf(stderr, "%s(%d): " format, __func__, __LINE__, ## __VA_ARGS__) -#else -#define DPRINTF(format, ...) no_debug(format, ## __VA_ARGS__) -#endif - -static inline void no_debug(const char *fmt, ...) -{ -} - #define __init __attribute__((constructor)) struct vlist_tree; |