xref: /original-bsd/old/adb/adb.vax/message.c (revision 6c57d260)
1 #
2 /*
3  *
4  *	UNIX debugger
5  *
6  */
7 
8 #include	"mac.h"
9 static	char sccsid[] = "@(#)message.c 4.2 05/15/81";
10 #include	"mode.h"
11 
12 MSG		VERSION =  "\nVERSION VM/VAX4.2	DATE 05/15/81\n";
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		EXBKPT	=  "too many breakpoints";
26 MSG		A68BAD	=  "bad a68 frame";
27 MSG		A68LNK	=  "bad a68 link";
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		BADFIL	=  "bad file format";
37 MSG		BADNAM	=  "not enough space for symbols";
38 MSG		LONGFIL	=  "filename too long";
39 MSG		NOTOPEN	=  "cannot open";
40 MSG		BADMAG	=  "bad core magic number";
41 MSG		TOODEEP =  "$<< nesting too deep";
42