1*30296Ssam /* 2*30296Ssam * Copyright (c) 1986 Regents of the University of California. 3*30296Ssam * All rights reserved. The Berkeley software License Agreement 4*30296Ssam * specifies the terms and conditions for redistribution. 5*30296Ssam * 6*30296Ssam * @(#)kdb_message.c 7.3 (Berkeley) 12/15/86 7*30296Ssam */ 830109Ssam 930109Ssam #include "../kdb/redef.h" 1030109Ssam 1130109Ssam char *BADCOM = "bad command"; 1230109Ssam char *BADSYM = "symbol not found"; 1330109Ssam char *BADLOC = "automatic variable not found"; 1430109Ssam char *NOCFN = "c routine not found"; 1530109Ssam char *NOMATCH = "cannot locate value"; 1630109Ssam char *BADKET = "unexpected ')'"; 1730109Ssam char *NOADR = "address expected"; 1830109Ssam char *BADVAR = "bad variable"; 1930109Ssam char *ADWRAP = "address wrap around"; 2030109Ssam char *BADEQ = "unexpected `='"; 2130109Ssam char *BADSYN = "syntax error"; 2230109Ssam char *NOEOR = "newline expected"; 2330109Ssam char *NOBKPT = "no breakpoint set"; 2430109Ssam char *SZBKPT = "bkpt command too long"; 2530109Ssam char *EXBKPT = "too many breakpoints"; 2630109Ssam char *BADMOD = "bad modifier"; 2730121Ssam char *BADRAD = "invalid radix"; 28