Header was included twice. Hardcode program name in usage string.

This commit is contained in:
Philippe Charnier 2003-02-05 14:20:27 +00:00
parent 19b746794d
commit aaa9487d53
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110400

View File

@ -28,7 +28,6 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/cdefs.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/user.h>
@ -46,13 +45,11 @@ __FBSDID("$FreeBSD$");
#include <errno.h>
#include <unistd.h>
static char *prog;
static void __dead2
usage(void)
{
fprintf(stderr, "usage: %s [-l] [-v] [-m] [-sig] [-u user] [-t tty] [-c cmd] [cmd]...\n", prog);
fprintf(stderr, "usage: killall [-l] [-v] [-m] [-sig] [-u user] [-t tty] [-c cmd] [cmd]...\n");
fprintf(stderr, "At least one option or argument to specify processes must be given.\n");
exit(1);
}
@ -132,7 +129,6 @@ main(int ac, char **av)
int matched;
int killed = 0;
prog = av[0];
av++;
ac--;