xref: /original-bsd/old/adb/adb.vax/message.c (revision 7ecb520c)
1 #ifndef lint
2 static	char sccsid[] = "@(#)message.c	4.3 08/11/83";
3 #endif
4 /*
5  *
6  *	UNIX debugger
7  *
8  */
9 
10 #include	"mac.h"
11 #include	"mode.h"
12 
13 MSG		VERSION =  "\nVERSION VM/VAX4.3	DATE 08/11/83\n";
14 
15 MSG		BADMOD	=  "bad modifier";
16 MSG		BADCOM	=  "bad command";
17 MSG		BADSYM	=  "symbol not found";
18 MSG		BADLOC	=  "automatic variable not found";
19 MSG		NOCFN	=  "c routine not found";
20 MSG		NOMATCH	=  "cannot locate value";
21 MSG		NOBKPT	=  "no breakpoint set";
22 MSG		BADKET	=  "unexpected ')'";
23 MSG		NOADR	=  "address expected";
24 MSG		NOPCS	=  "no process";
25 MSG		BADVAR	=  "bad variable";
26 MSG		EXBKPT	=  "too many breakpoints";
27 MSG		A68BAD	=  "bad a68 frame";
28 MSG		A68LNK	=  "bad a68 link";
29 MSG		ADWRAP	=  "address wrap around";
30 MSG		BADEQ	=  "unexpected `='";
31 MSG		BADWAIT	=  "wait error: process disappeared!";
32 MSG		ENDPCS	=  "process terminated";
33 MSG		NOFORK	=  "try again";
34 MSG		BADSYN	=  "syntax error";
35 MSG		NOEOR	=  "newline expected";
36 MSG		SZBKPT	=  "bkpt: command too long";
37 MSG		BADFIL	=  "bad file format";
38 MSG		BADNAM	=  "not enough space for symbols";
39 MSG		LONGFIL	=  "filename too long";
40 MSG		NOTOPEN	=  "cannot open";
41 MSG		BADMAG	=  "bad core magic number";
42 MSG		TOODEEP =  "$<< nesting too deep";
43