/*->h.ckcdeb */


/*
 DEBUG and TLOG should be defined in the Makefile if you want debugging
 and transaction logs.  Don't define them if you want to save the space
 and overhead.  (Note, in version 4F these definitions changed from "{}"
 to the null string to avoid problems with semicolons after braces, as in:
 "if (x) tlog(this); else tlog(that);"
*/


/* #define DEBUG */


#ifndef DEBUG
#define debug(a,b,c,d)
#endif

#ifndef TLOG
#define tlog(a,b,c,d)
#endif


#ifndef SCREEN
#define screen(a,b,c,d)
#endif



/* Formats for debug(), tlog(), etc */

#define F000 0
#define F001 1
#define F010 2
#define F011 3
#define F100 4
#define F101 5
#define F110 6
#define F111 7



/* C Compiler Dependencies */

typedef char CHAR;
typedef long LONG;


/* Line delimiter for text files */

/*
 If the system uses a single character for text file line delimitation,
 define NLCHAR to the value of that character.  For text files, that
 character will be converted to CRLF upon output, and CRLF will be converted
 to that character on input during text-mode (default) packet operations.
*/

#define NLCHAR 012


#define DBLKSIZ 0
#define DLRECL 0

