xref: /csrg-svn/old/adb/adb.vax/message.c (revision 14470)
1*14470Ssam #ifndef lint
2*14470Ssam static	char sccsid[] = "@(#)message.c	4.3 08/11/83";
3*14470Ssam #endif
43759Sroot /*
53759Sroot  *
63759Sroot  *	UNIX debugger
73759Sroot  *
83759Sroot  */
93759Sroot 
103759Sroot #include	"mac.h"
113759Sroot #include	"mode.h"
123759Sroot 
13*14470Ssam MSG		VERSION =  "\nVERSION VM/VAX4.3	DATE 08/11/83\n";
143759Sroot 
153759Sroot MSG		BADMOD	=  "bad modifier";
163759Sroot MSG		BADCOM	=  "bad command";
173759Sroot MSG		BADSYM	=  "symbol not found";
183759Sroot MSG		BADLOC	=  "automatic variable not found";
193759Sroot MSG		NOCFN	=  "c routine not found";
203759Sroot MSG		NOMATCH	=  "cannot locate value";
213759Sroot MSG		NOBKPT	=  "no breakpoint set";
223759Sroot MSG		BADKET	=  "unexpected ')'";
233759Sroot MSG		NOADR	=  "address expected";
243759Sroot MSG		NOPCS	=  "no process";
253759Sroot MSG		BADVAR	=  "bad variable";
263759Sroot MSG		EXBKPT	=  "too many breakpoints";
273759Sroot MSG		A68BAD	=  "bad a68 frame";
283759Sroot MSG		A68LNK	=  "bad a68 link";
293759Sroot MSG		ADWRAP	=  "address wrap around";
303759Sroot MSG		BADEQ	=  "unexpected `='";
313759Sroot MSG		BADWAIT	=  "wait error: process disappeared!";
323759Sroot MSG		ENDPCS	=  "process terminated";
333759Sroot MSG		NOFORK	=  "try again";
343759Sroot MSG		BADSYN	=  "syntax error";
353759Sroot MSG		NOEOR	=  "newline expected";
363759Sroot MSG		SZBKPT	=  "bkpt: command too long";
373759Sroot MSG		BADFIL	=  "bad file format";
383759Sroot MSG		BADNAM	=  "not enough space for symbols";
393759Sroot MSG		LONGFIL	=  "filename too long";
403759Sroot MSG		NOTOPEN	=  "cannot open";
413759Sroot MSG		BADMAG	=  "bad core magic number";
423759Sroot MSG		TOODEEP =  "$<< nesting too deep";
43