xref: /csrg-svn/old/lib2648/error.c (revision 11472)
1*11472Sralph /*	error.c	4.1	83/03/09	*/
2*11472Sralph /*
3*11472Sralph  * error: default handling of errors.
4*11472Sralph  */
5*11472Sralph 
6*11472Sralph error(msg)
7*11472Sralph char *msg;
8*11472Sralph {
9*11472Sralph 	message(msg);
10*11472Sralph 	/* Maybe it would be nice to longjmp somewhere here */
11*11472Sralph }
12