TecsServer no longer restarted by SICS

This commit is contained in:
cvs
2000-06-07 06:37:13 +00:00
parent b7c9700c51
commit f979f410a4
9 changed files with 69 additions and 68 deletions

View File

@@ -69,12 +69,12 @@ void ErrShow(char *text)
outrtn(outarg, "");
}
void ErrShort(void) {
void ErrShort(char *msg) {
if (outrtn==NULL) {
outrtn=ErrOutFil;
outarg=stdout;
}
outrtn(outarg, ErrMessage);
outrtn(outarg, msg);
}
void ErrSetOutRtn(void (*rtn)(), void *arg) {
@@ -125,6 +125,7 @@ void err_msg_(F_CHAR(text), int text_len) {
void err_set_outrtn_(void (*rtn)(), void *arg) {
ErrSetOutRtn(rtn, arg);
}
void err_short_(void) {
ErrShort();
ErrShort(ErrMessage);
}