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