diff options
author | ache <ache@FreeBSD.org> | 1995-04-12 02:42:39 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-04-12 02:42:39 +0000 |
commit | 3ec57b4b689ddd9845b2aa3fc49df92d4af934e5 (patch) | |
tree | 6cf28d2ee52a1c8127b4b9eb970fac96197d763f /usr.bin/at/panic.h | |
parent | 9d69b1d1123b6e165254dc11c02ef070402073f6 (diff) | |
download | FreeBSD-src-3ec57b4b689ddd9845b2aa3fc49df92d4af934e5.zip FreeBSD-src-3ec57b4b689ddd9845b2aa3fc49df92d4af934e5.tar.gz |
Upgrade.
Diffstat (limited to 'usr.bin/at/panic.h')
-rw-r--r-- | usr.bin/at/panic.h | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/usr.bin/at/panic.h b/usr.bin/at/panic.h index 3b9c2ea..7f82f2d 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); |