1 /*
2  * Copyright (c) 1986 Regents of the University of California.
3  * All rights reserved.  The Berkeley software License Agreement
4  * specifies the terms and conditions for redistribution.
5  *
6  *	@(#)kdb_message.c	7.3 (Berkeley) 12/15/86
7  */
8 
9 #include "../kdb/redef.h"
10 
11 char	*BADCOM	=  "bad command";
12 char	*BADSYM	=  "symbol not found";
13 char	*BADLOC	=  "automatic variable not found";
14 char	*NOCFN	=  "c routine not found";
15 char	*NOMATCH =  "cannot locate value";
16 char	*BADKET	=  "unexpected ')'";
17 char	*NOADR	=  "address expected";
18 char	*BADVAR	=  "bad variable";
19 char	*ADWRAP	=  "address wrap around";
20 char	*BADEQ	=  "unexpected `='";
21 char	*BADSYN	=  "syntax error";
22 char	*NOEOR	=  "newline expected";
23 char	*NOBKPT	=  "no breakpoint set";
24 char	*SZBKPT	=  "bkpt command too long";
25 char	*EXBKPT	=  "too many breakpoints";
26 char	*BADMOD	=  "bad modifier";
27 char	*BADRAD =  "invalid radix";
28