(MDEBUG_PRINT5): New macro.
authorhanda <handa>
Thu, 29 Jul 2004 12:55:32 +0000 (12:55 +0000)
committerhanda <handa>
Thu, 29 Jul 2004 12:55:32 +0000 (12:55 +0000)
src/internal.h

index 1dd0782..13f2b49 100644 (file)
@@ -505,6 +505,12 @@ extern void mdebug__print_time ();
       fprintf (stderr, (fmt), (arg1), (arg2), (arg3), (arg4)); \
   } while (0)
 
+#define MDEBUG_PRINT5(fmt, arg1, arg2, arg3, arg4, arg5)               \
+  do {                                                                 \
+    if (mdebug__flag & mdebug_mask)                                    \
+      fprintf (stderr, (fmt), (arg1), (arg2), (arg3), (arg4), (arg5)); \
+  } while (0)
+
 
 #define MDEBUG_PUSH_TIME()             \
   do {                                 \