aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/at/panic.h
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-04-12 02:42:39 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-04-12 02:42:39 +0000
commitb89321a57ddc992e95585bf896d1871fae5b88c1 (patch)
tree6cf28d2ee52a1c8127b4b9eb970fac96197d763f /usr.bin/at/panic.h
parentfa877a53cb5021bbd088e410b9f8a65dab92ddcc (diff)
Notes
Diffstat (limited to 'usr.bin/at/panic.h')
-rw-r--r--usr.bin/at/panic.h32
1 files changed, 22 insertions, 10 deletions
diff --git a/usr.bin/at/panic.h b/usr.bin/at/panic.h
index 3b9c2eadea10..7f82f2decfbf 100644
--- a/usr.bin/at/panic.h
+++ b/usr.bin/at/panic.h
@@ -1,7 +1,6 @@
-/*
- * panic.h - header for at(1)
- * Copyright (c) 1993 Thomas Koenig
- * All rights reserved.
+/*
+ * panic.h - header for at(1)
+ * Copyright (C) 1993 Thomas Koenig
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -22,11 +21,24 @@
* THEORY OF LIABILITY, WETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $Id: panic.h,v 1.1 1993/12/05 11:36:58 cgd Exp $
*/
-void panic __P((char *a));
-void perr __P((char *a));
-void perr2 __P((char *a, char *b));
-void usage __P((void));
+#ifdef __FreeBSD__
+#define __NORETURN
+#endif
+
+void
+#ifdef __GNUC__
+__NORETURN
+#endif
+panic(char *a);
+void
+#ifdef __GNUC__
+__NORETURN
+#endif
+perr(char *a);
+void
+#ifdef __GNUC__
+__NORETURN
+#endif
+usage(void);