1: /*
2: * Copyright (c) 1980 Regents of the University of California.
3: * All rights reserved. The Berkeley software License Agreement
4: * specifies the terms and conditions for redistribution.
5: */
6:
7: #if defined(LIBC_SCCS) && !defined(lint)
8: static char sccsid[] = "@(#)setjmperr.c 5.2 (Berkeley) 3/9/86";
9: #endif LIBC_SCCS and not lint
10:
11: #include <setjmp.h> /* include any machine defines */
12:
13: #define ERRMSG "longjmp botch\n"
14:
15: /*
16: * This routine is called from longjmp() when an error occurs.
17: * Programs that wish to exit gracefully from this error may
18: * write their own versions.
19: * If this routine returns, the program is aborted.
20: */
21: longjmperror()
22: {
23:
24: write(2, ERRMSG, sizeof(ERRMSG));
25: }
Defined functions
Defined variables
sccsid
defined in line
8;
never used
Defined macros