panic.h revision 941
1941Snate/*
2941Snate * panic.h -  header for at(1)
3941Snate * Copyright (c) 1993 Thomas Koenig
4941Snate * All rights reserved.
5941Snate *
6941Snate * Redistribution and use in source and binary forms, with or without
7941Snate * modification, are permitted provided that the following conditions
8941Snate * are met:
9941Snate * 1. Redistributions of source code must retain the above copyright
10941Snate *    notice, this list of conditions and the following disclaimer.
11941Snate * 2. The name of the author(s) may not be used to endorse or promote
12941Snate *    products derived from this software without specific prior written
13941Snate *    permission.
14941Snate *
15941Snate * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16941Snate * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17941Snate * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18941Snate * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19941Snate * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20941Snate * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21941Snate * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22941Snate * THEORY OF LIABILITY, WETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23941Snate * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24941Snate * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25941Snate *
26941Snate *	$Id: panic.h,v 1.1 1993/12/05 11:36:58 cgd Exp $
27941Snate */
28941Snate
29941Snatevoid panic	__P((char *a));
30941Snatevoid perr	__P((char *a));
31941Snatevoid perr2	__P((char *a, char *b));
32941Snatevoid usage	__P((void));
33