xref: /original-bsd/old/adb/adb.tahoe/message.c (revision 7211505a)
1 #ifndef lint
2 static	char sccsid[] = "@(#)message.c	1.1 (Berkeley) 02/25/86";
3 #endif
4 
5 /*
6  *
7  *	UNIX debugger
8  *
9  */
10 
11 #include	"mac.h"
12 #include	"mode.h"
13 
14 MSG		BADMOD	=  "bad modifier";
15 MSG		BADCOM	=  "bad command";
16 MSG		BADSYM	=  "symbol not found";
17 MSG		BADLOC	=  "automatic variable not found";
18 MSG		NOCFN	=  "c routine not found";
19 MSG		NOMATCH	=  "cannot locate value";
20 MSG		NOBKPT	=  "no breakpoint set";
21 MSG		BADKET	=  "unexpected ')'";
22 MSG		NOADR	=  "address expected";
23 MSG		NOPCS	=  "no process";
24 MSG		BADVAR	=  "bad variable";
25 MSG		BADTXT	=  "text address not found";
26 MSG		BADDAT	=  "data address not found";
27 MSG		EXBKPT	=  "too many breakpoints";
28 MSG		ADWRAP	=  "address wrap around";
29 MSG		BADEQ	=  "unexpected `='";
30 MSG		BADWAIT	=  "wait error: process disappeared!";
31 MSG		ENDPCS	=  "process terminated";
32 MSG		NOFORK	=  "try again";
33 MSG		BADSYN	=  "syntax error";
34 MSG		NOEOR	=  "newline expected";
35 MSG		SZBKPT	=  "bkpt: command too long";
36 MSG		LONGFIL	=  "filename too long";
37 MSG		NOTOPEN	=  "cannot open";
38 MSG		TOODEEP =  "$<< nesting too deep";
39