ack/util/int/log.h

25 lines
399 B
C
Raw Normal View History

1988-06-22 16:57:09 +00:00
/*
Defines and externs for the logging machine
*/
/* $Header$ */
#include "logging.h"
/********* Logging control ********/
#ifdef LOGGING
extern int must_log; /* set if logging must occur */
extern long log_start; /* inr at start of logging */
extern int logging; /* set if logging in progress */
#define LOG(a) { if (logging) do_log a; }
#else
#define LOG(a)
#endif /* LOGGING */
1988-06-22 16:57:09 +00:00