diff options
| author | Dima Dorfman <dd@FreeBSD.org> | 2001-06-26 22:11:13 +0000 |
|---|---|---|
| committer | Dima Dorfman <dd@FreeBSD.org> | 2001-06-26 22:11:13 +0000 |
| commit | 015fadf9d76abc46b4e4e5f0d97ed50a42624176 (patch) | |
| tree | b130978051d0c595798382b06e24aebc529e5812 /usr.sbin/fdcontrol | |
| parent | 4c34deeecf017d3af243341c1cf056ee970ed051 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/fdcontrol')
| -rw-r--r-- | usr.sbin/fdcontrol/Makefile | 5 | ||||
| -rw-r--r-- | usr.sbin/fdcontrol/fdcontrol.c | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/usr.sbin/fdcontrol/Makefile b/usr.sbin/fdcontrol/Makefile index 62b5583ced45d..df184681e3eaa 100644 --- a/usr.sbin/fdcontrol/Makefile +++ b/usr.sbin/fdcontrol/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ -PROG = fdcontrol -MAN = fdcontrol.8 +PROG= fdcontrol +WARNS?= 2 +MAN= fdcontrol.8 .include <bsd.prog.mk> diff --git a/usr.sbin/fdcontrol/fdcontrol.c b/usr.sbin/fdcontrol/fdcontrol.c index 6e522bdaf60da..e1200592a2b50 100644 --- a/usr.sbin/fdcontrol/fdcontrol.c +++ b/usr.sbin/fdcontrol/fdcontrol.c @@ -30,14 +30,18 @@ static const char rcsid[] = "$FreeBSD$"; #endif /* not lint */ +#include <sys/fdcio.h> +#include <sys/file.h> + #include <err.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> -#include <sys/file.h> -#include <sys/fdcio.h> -int +static int getnumber(void); +static void usage(void); + +static int getnumber(void) { int i; @@ -50,7 +54,7 @@ getnumber(void) return i; } -void +static void usage(void) { fprintf(stderr, "usage: fdcontrol [-d 0|1] | [-s] device-node\n"); |
