1*30109Ssam /* kdb_message.c 7.1 86/11/20 */ 2*30109Ssam 3*30109Ssam #include "../kdb/redef.h" 4*30109Ssam 5*30109Ssam char *BADCOM = "bad command"; 6*30109Ssam char *BADSYM = "symbol not found"; 7*30109Ssam char *BADLOC = "automatic variable not found"; 8*30109Ssam char *NOCFN = "c routine not found"; 9*30109Ssam char *NOMATCH = "cannot locate value"; 10*30109Ssam char *BADKET = "unexpected ')'"; 11*30109Ssam char *NOADR = "address expected"; 12*30109Ssam char *BADVAR = "bad variable"; 13*30109Ssam char *BADTXT = "text address not found"; 14*30109Ssam char *BADDAT = "data address not found"; 15*30109Ssam char *ADWRAP = "address wrap around"; 16*30109Ssam char *BADEQ = "unexpected `='"; 17*30109Ssam char *BADSYN = "syntax error"; 18*30109Ssam char *NOEOR = "newline expected"; 19*30109Ssam char *NOBKPT = "no breakpoint set"; 20*30109Ssam char *SZBKPT = "bkpt command too long"; 21*30109Ssam char *EXBKPT = "too many breakpoints"; 22*30109Ssam char *BADMOD = "bad modifier"; 23