/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)setjmperr.c 5.6 (Berkeley) 06/01/90"; #endif /* LIBC_SCCS and not lint */ /* * This routine is called from longjmp() when an error occurs. * Programs that wish to exit gracefully from this error may * write their own versions. * If this routine returns, the program is aborted. */ #include longjmperror() { #define ERRMSG "longjmp botch\n" write(fileno(stderr), ERRMSG, sizeof(ERRMSG) - 1); }