Pristine Ack-5.5
[Ack-5.5.git] / util / int / log.h
1 /*
2         Defines and externs for the logging machine
3 */
4
5 /* $Id: log.h,v 2.3 1994/06/24 10:47:52 ceriel Exp $ */
6
7 #include        "logging.h"
8
9 /********* Logging control ********/
10
11 #ifdef  LOGGING
12
13 extern int must_log;                    /* set if logging must occur */
14 extern long log_start;                  /* inr at start of logging */
15 extern int logging;                     /* set if logging in progress */
16
17 #define LOG(a)          { if (logging) do_log a; }
18
19 #else
20
21 #define LOG(a)
22
23 #endif  /* LOGGING */
24