111472Sralph /* 2*19789Sdist * Copyright (c) 1980 Regents of the University of California. 3*19789Sdist * All rights reserved. The Berkeley software License Agreement 4*19789Sdist * specifies the terms and conditions for redistribution. 5*19789Sdist */ 6*19789Sdist 7*19789Sdist #ifndef lint 8*19789Sdist static char sccsid[] = "@(#)error.c 5.1 (Berkeley) 04/30/85"; 9*19789Sdist #endif not lint 10*19789Sdist 11*19789Sdist /* 1211472Sralph * error: default handling of errors. 1311472Sralph */ 1411472Sralph error(msg)1511472Sralpherror(msg) 1611472Sralph char *msg; 1711472Sralph { 1811472Sralph message(msg); 1911472Sralph /* Maybe it would be nice to longjmp somewhere here */ 2011472Sralph } 21