xref: /csrg-svn/old/sdb/mac.h (revision 1335)
1*1335Sbill /* "@(#)mac.h 4.1 10/09/80" */
2*1335Sbill #
3*1335Sbill /*
4*1335Sbill  *	UNIX debugger
5*1335Sbill  */
6*1335Sbill 
7*1335Sbill #define TYPE	typedef
8*1335Sbill #define STRUCT	struct
9*1335Sbill #define UNION	union
10*1335Sbill #define REG	register
11*1335Sbill 
12*1335Sbill #define BEGIN	{
13*1335Sbill #define END	}
14*1335Sbill 
15*1335Sbill #define IF	if(
16*1335Sbill #define THEN	){
17*1335Sbill #define ELSE	} else {
18*1335Sbill #define ELIF	} else if (
19*1335Sbill #define FI	}
20*1335Sbill 
21*1335Sbill #define FOR	for(
22*1335Sbill #define WHILE	while(
23*1335Sbill #define DO	){
24*1335Sbill #define OD	}
25*1335Sbill #define REP	do{
26*1335Sbill #define PER	}while(
27*1335Sbill #define DONE	);
28*1335Sbill #define LOOP	for(;;){
29*1335Sbill #define POOL	}
30*1335Sbill 
31*1335Sbill #define SKIP	;
32*1335Sbill #define DIV	/
33*1335Sbill #define REM	%
34*1335Sbill #define NEQ	^
35*1335Sbill #define ANDF	&&
36*1335Sbill #define ORF	||
37*1335Sbill 
38*1335Sbill #define TRUE	 (-1)
39*1335Sbill #define FALSE	0
40*1335Sbill #define LOBYTE	0377
41*1335Sbill #define HIBYTE	0177400
42*1335Sbill #define STRIP	0177
43*1335Sbill #define HEXMSK	017
44*1335Sbill 
45*1335Sbill #define SP	' '
46*1335Sbill #define TB	'\t'
47*1335Sbill #define NL	'\n'
48*1335Sbill 
49*1335Sbill #define SCCSID(arg) static char Sccsid[] = "arg"
50