ae75f9d4e5
- 755 -> 644
34 lines
502 B
C
34 lines
502 B
C
/* Copyright (c) 1985 Ceriel J.H. Jacobs */
|
|
|
|
# ifndef lint
|
|
static char rcsid[] = "$Header$";
|
|
# endif
|
|
|
|
# define _ASSERT_
|
|
|
|
# include "in_all.h"
|
|
# include "assert.h"
|
|
# if DO_ASSERT
|
|
# include "output.h"
|
|
# include "term.h"
|
|
|
|
/*
|
|
* Assertion fails. Tell me about it.
|
|
*/
|
|
|
|
VOID
|
|
badassertion(ass,f,l) char *ass, *f; {
|
|
|
|
clrbline();
|
|
putline("Assertion \"");
|
|
putline(ass);
|
|
putline("\" failed ");
|
|
putline(f);
|
|
putline(", line ");
|
|
prnum((long) l);
|
|
putline(".\r\n");
|
|
flush();
|
|
resettty();
|
|
abort();
|
|
}
|
|
# endif
|