aboutsummaryrefslogtreecommitdiffstats
path: root/debug.h
diff options
context:
space:
mode:
authorltoetsch <ltoetsch@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-14 13:19:29 +0000
committerltoetsch <ltoetsch@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2001-03-14 13:19:29 +0000
commitdfc23a8138bb7aa72043d754170c1c48e66485c0 (patch)
tree1570430e8eda1b1ba400ad2c2b67e4e37f42afeb /debug.h
parentf3076919635e550ed752db4030468a3f256f60a1 (diff)
downloadlcd4linux-dfc23a8138bb7aa72043d754170c1c48e66485c0.tar.gz
[lcd4linux @ 2001-03-14 13:19:29 by ltoetsch]
Added pop3/imap4 mail support git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@117 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/debug.h b/debug.h
index 44bac26..6db001b 100644
--- a/debug.h
+++ b/debug.h
@@ -1,4 +1,4 @@
-/* $Id: debug.h,v 1.2 2000/08/10 09:44:09 reinelt Exp $
+/* $Id: debug.h,v 1.3 2001/03/14 13:19:29 ltoetsch Exp $
*
* debug messages
*
@@ -20,6 +20,9 @@
*
*
* $Log: debug.h,v $
+ * Revision 1.3 2001/03/14 13:19:29 ltoetsch
+ * Added pop3/imap4 mail support
+ *
* Revision 1.2 2000/08/10 09:44:09 reinelt
*
* new debugging scheme: error(), info(), debug()
@@ -39,6 +42,7 @@
void message (int level, const char *format, ...);
+#define sockdebug(args...) message (3, args)
#define debug(args...) message (2, __FILE__ ": " args)
#define info(args...) message (1, args)
#define error(args...) message (0, args)