--- lmtp2nntp.h 2001/09/07 15:02:08 1.2
+++ lmtp2nntp.h 2001/09/10 06:54:06 1.3
@@ -42,5 +42,14 @@
l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1, a2)
#define log3(ctx,level,msg,a1,a2,a3) \
l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1, a2, a3)
+#define log4(ctx,level,msg,a1,a2,a3,a4) \
+ l2_stream_log((ctx)->l2, L2_LEVEL_##level, "%P: " msg, a1, a2, a3, a4)
+
+#define ZERO 0
+#define STMT(stuff) do { stuff } while (ZERO)
+#define CU(returncode) STMT( rc = returncode; goto CUS; )
+//FIXME #define VCU STMT( goto CUS; )
+//FIXME #define RETURN_WVAL(val) return (val)
+//FIXME #define RETURN_EXRC return (rc)
#endif /* __LMTP2NNTP_H__ */
|