1*30121Ssam /*	kdb_message.c	7.2	86/11/20	*/
230109Ssam 
330109Ssam #include "../kdb/redef.h"
430109Ssam 
530109Ssam char	*BADCOM	=  "bad command";
630109Ssam char	*BADSYM	=  "symbol not found";
730109Ssam char	*BADLOC	=  "automatic variable not found";
830109Ssam char	*NOCFN	=  "c routine not found";
930109Ssam char	*NOMATCH =  "cannot locate value";
1030109Ssam char	*BADKET	=  "unexpected ')'";
1130109Ssam char	*NOADR	=  "address expected";
1230109Ssam char	*BADVAR	=  "bad variable";
1330109Ssam char	*BADTXT	=  "text address not found";
1430109Ssam char	*BADDAT	=  "data address not found";
1530109Ssam char	*ADWRAP	=  "address wrap around";
1630109Ssam char	*BADEQ	=  "unexpected `='";
1730109Ssam char	*BADSYN	=  "syntax error";
1830109Ssam char	*NOEOR	=  "newline expected";
1930109Ssam char	*NOBKPT	=  "no breakpoint set";
2030109Ssam char	*SZBKPT	=  "bkpt command too long";
2130109Ssam char	*EXBKPT	=  "too many breakpoints";
2230109Ssam char	*BADMOD	=  "bad modifier";
23*30121Ssam char	*BADRAD =  "invalid radix";
24