1 /*
2  *	(c) Copyright 1990, Kim Fabricius Storm.  All rights reserved.
3  *      Copyright (c) 1996-2005 Michael T Pins.  All rights reserved.
4  *
5  *	Debug flags and defines
6  *
7  *	Notice:  no modules are conditioned by this file in the
8  *		 makefile.  touch the source file to have a change
9  *		 in debugging setup to reflect the program behavior
10  */
11 
12 #ifndef _NN_DEBUG_H
13 #define _NN_DEBUG_H 1
14 
15 /* debugging */
16 
17 #define RC_TEST		1	/* rc file updates */
18 #define DG_TEST		2	/* digest decoding */
19 #define SEQ_TEST	4	/* sequence file decoding */
20 #define SEQ_DUMP	8	/* dump sequence after read */
21 
22 extern int      Debug;
23 #endif				/* _NN_DEBUG_H */
24