diff options
| author | David Malone <dwmalone@FreeBSD.org> | 2002-09-04 23:29:10 +0000 |
|---|---|---|
| committer | David Malone <dwmalone@FreeBSD.org> | 2002-09-04 23:29:10 +0000 |
| commit | f4ac32def255b5968bdd8150057b9c0d14595689 (patch) | |
| tree | fb230419005f211ecea1e667385bde9886dbf0d8 /usr.bin/mkfifo | |
| parent | d946bf789255a84ecbbbdfd07bffb48da063204f (diff) | |
Notes
Diffstat (limited to 'usr.bin/mkfifo')
| -rw-r--r-- | usr.bin/mkfifo/mkfifo.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/mkfifo/mkfifo.c b/usr.bin/mkfifo/mkfifo.c index e2aa1cd11591..85cd6e145ac9 100644 --- a/usr.bin/mkfifo/mkfifo.c +++ b/usr.bin/mkfifo/mkfifo.c @@ -63,9 +63,7 @@ static void usage(void); static int f_mode; int -main(argc, argv) - int argc; - char *argv[]; +main(int argc, char *argv[]) { char *modestr; void *modep; @@ -109,7 +107,7 @@ main(argc, argv) } static void -usage() +usage(void) { (void)fprintf(stderr, "usage: mkfifo [-m mode] fifo_name ...\n"); exit(1); |
