xref: /original-bsd/old/lib2648/error.c (revision fed9de31)
1*fed9de31Sdist /*
2*fed9de31Sdist  * Copyright (c) 1980 Regents of the University of California.
3*fed9de31Sdist  * All rights reserved.  The Berkeley software License Agreement
4*fed9de31Sdist  * specifies the terms and conditions for redistribution.
5*fed9de31Sdist  */
6*fed9de31Sdist 
7*fed9de31Sdist #ifndef lint
8*fed9de31Sdist static char sccsid[] = "@(#)error.c	5.1 (Berkeley) 04/30/85";
9*fed9de31Sdist #endif not lint
10*fed9de31Sdist 
11c1c9793bSralph /*
12c1c9793bSralph  * error: default handling of errors.
13c1c9793bSralph  */
14c1c9793bSralph 
error(msg)15c1c9793bSralph error(msg)
16c1c9793bSralph char *msg;
17c1c9793bSralph {
18c1c9793bSralph 	message(msg);
19c1c9793bSralph 	/* Maybe it would be nice to longjmp somewhere here */
20c1c9793bSralph }
21