130296Ssam /*
230296Ssam  * Copyright (c) 1986 Regents of the University of California.
330296Ssam  * All rights reserved.  The Berkeley software License Agreement
430296Ssam  * specifies the terms and conditions for redistribution.
530296Ssam  *
6*41340Ssklower  *	@(#)kdb_message.c	7.4 (Berkeley) 05/03/90
730296Ssam  */
830109Ssam 
9*41340Ssklower char	*kdbBADCOM	=  "bad command";
10*41340Ssklower char	*kdbBADSYM	=  "symbol not found";
11*41340Ssklower char	*kdbBADLOC	=  "automatic variable not found";
12*41340Ssklower char	*kdbNOCFN	=  "c routine not found";
13*41340Ssklower char	*kdbNOMATCH =  "cannot locate value";
14*41340Ssklower char	*kdbBADKET	=  "unexpected ')'";
15*41340Ssklower char	*kdbNOADR	=  "address expected";
16*41340Ssklower char	*kdbBADVAR	=  "bad variable";
17*41340Ssklower char	*kdbADWRAP	=  "address wrap around";
18*41340Ssklower char	*kdbBADEQ	=  "unexpected `='";
19*41340Ssklower char	*kdbBADSYN	=  "syntax error";
20*41340Ssklower char	*kdbNOEOR	=  "newline expected";
21*41340Ssklower char	*kdbNOBKPT	=  "no breakpoint set";
22*41340Ssklower char	*kdbSZBKPT	=  "bkpt command too long";
23*41340Ssklower char	*kdbEXBKPT	=  "too many breakpoints";
24*41340Ssklower char	*kdbBADMOD	=  "bad modifier";
25*41340Ssklower char	*kdbBADRAD =  "invalid radix";
26