panic.c revision 1.2.8.2 1 1.2.8.2 wiz /* $NetBSD: panic.c,v 1.2.8.2 2001/04/06 11:13:57 wiz Exp $ */
2 1.2.8.2 wiz
3 1.2.8.2 wiz /*-
4 1.2.8.2 wiz * Copyright (c) 2000 Kazuma Arino.
5 1.2.8.2 wiz * All rights reserved.
6 1.2.8.2 wiz *
7 1.2.8.2 wiz * Redistribution and use in source and binary forms, with or without
8 1.2.8.2 wiz * modification, are permitted provided that the following conditions
9 1.2.8.2 wiz * are met:
10 1.2.8.2 wiz * 1. Redistributions of source code must retain the above copyright
11 1.2.8.2 wiz * notice, this list of conditions and the following disclaimer.
12 1.2.8.2 wiz * 2. Redistributions in binary form must reproduce the above copyright
13 1.2.8.2 wiz * notice, this list of conditions and the following disclaimer in the
14 1.2.8.2 wiz * documentation and/or other materials provided with the distribution.
15 1.2.8.2 wiz *
16 1.2.8.2 wiz * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 1.2.8.2 wiz * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 1.2.8.2 wiz * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 1.2.8.2 wiz * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 1.2.8.2 wiz * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 1.2.8.2 wiz * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 1.2.8.2 wiz * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 1.2.8.2 wiz * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 1.2.8.2 wiz * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.2.8.2 wiz * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.2.8.2 wiz * SUCH DAMAGE.
27 1.2.8.2 wiz *
28 1.2.8.2 wiz */
29 1.2.8.2 wiz
30 1.2.8.2 wiz #include <stdlib.h>
31 1.2.8.2 wiz #include <stand.h>
32 1.2.8.2 wiz
33 1.2.8.2 wiz void
34 1.2.8.2 wiz abort()
35 1.2.8.2 wiz {
36 1.2.8.2 wiz exit (1);
37 1.2.8.2 wiz }
38 1.2.8.2 wiz
39 1.2.8.2 wiz /* dummy! */
40 1.2.8.2 wiz
41 1.2.8.2 wiz __dead void
42 1.2.8.2 wiz panic(const char *fmt, ...)
43 1.2.8.2 wiz {
44 1.2.8.2 wiz abort();
45 1.2.8.2 wiz /*NOTREACHED*/
46 1.2.8.2 wiz }
47