=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/at/Attic/panic.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/at/Attic/panic.c 1996/08/03 20:16:57 1.3 +++ src/usr.bin/at/Attic/panic.c 1997/03/01 23:40:09 1.4 @@ -1,10 +1,9 @@ -/* $OpenBSD: panic.c,v 1.3 1996/08/03 20:16:57 millert Exp $ */ +/* $OpenBSD: panic.c,v 1.4 1997/03/01 23:40:09 millert Exp $ */ /* $NetBSD: panic.c,v 1.2 1995/03/25 18:13:33 glass Exp $ */ /* * panic.c - terminate fast in case of error * Copyright (c) 1993 by Thomas Koenig - * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -18,7 +17,7 @@ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY @@ -43,7 +42,7 @@ /* File scope variables */ #ifndef lint -static char rcsid[] = "$OpenBSD: panic.c,v 1.3 1996/08/03 20:16:57 millert Exp $"; +static char rcsid[] = "$OpenBSD: panic.c,v 1.4 1997/03/01 23:40:09 millert Exp $"; #endif /* External variables */ @@ -54,9 +53,10 @@ panic(a) char *a; { -/* Something fatal has happened, print error message and exit. - */ - fprintf(stderr, "%s: %s\n", namep, a); + /* + * Something fatal has happened, print error message and exit. + */ + (void)fprintf(stderr, "%s: %s\n", namep, a); if (fcreated) { PRIV_START unlink(atfile); @@ -70,8 +70,9 @@ perr(a) char *a; { -/* Some operating system error; print error message and exit. - */ + /* + * Some operating system error; print error message and exit. + */ perror(a); if (fcreated) { PRIV_START @@ -86,18 +87,18 @@ perr2(a, b) char *a, *b; { - fprintf(stderr, "%s", a); + (void)fputs(a, stderr); perr(b); } void usage(void) { -/* Print usage and exit. -*/ - fprintf(stderr, "Usage: at [-q x] [-f file] [-m] time\n" - " atq [-q x] [-v]\n" - " atrm [-q x] job ...\n" - " batch [-f file] [-m]\n"); + /* Print usage and exit. */ + (void)fprintf(stderr, "Usage: at [-V] [-q x] [-f file] [-m] time\n" + " at [-V] -c job [job ...]\n" + " atq [-V] [-q x] [-v]\n" + " atrm [-V] job [job ...]\n" + " batch [-V] [-f file] [-m]\n"); exit(EXIT_FAILURE); }