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