1 # 2 /* 3 * 4 * UNIX debugger 5 * 6 */ 7 8 #include "mac.h" 9 static char sccsid[] = "@(#)message.c 4.1 05/14/81"; 10 #include "mode.h" 11 12 MSG VERSION = "\nVERSION VM/VAX4.1 DATE 05/14/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 BADTXT = "text address not found"; 26 MSG BADDAT = "data address not found"; 27 MSG ODDADR = "odd address"; 28 MSG EXBKPT = "too many breakpoints"; 29 MSG A68BAD = "bad a68 frame"; 30 MSG A68LNK = "bad a68 link"; 31 MSG ADWRAP = "address wrap around"; 32 MSG BADEQ = "unexpected `='"; 33 MSG BADWAIT = "wait error: process disappeared!"; 34 MSG ENDPCS = "process terminated"; 35 MSG NOFORK = "try again"; 36 MSG BADSYN = "syntax error"; 37 MSG NOEOR = "newline expected"; 38 MSG SZBKPT = "bkpt: command too long"; 39 MSG BADFIL = "bad file format"; 40 MSG BADNAM = "not enough space for symbols"; 41 MSG LONGFIL = "filename too long"; 42 MSG NOTOPEN = "cannot open"; 43 MSG BADMAG = "bad core magic number"; 44 MSG TOODEEP = "$<< nesting too deep"; 45