Add appropriate includes and prototypes; staticize; set WARNS=2. Also
minor Makefile nits. Submitted by: Mike Barcroft <mike@q9media.com>
This commit is contained in:
parent
ee8f997358
commit
e9ec4f9449
@ -1,6 +1,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PROG = fdcontrol
|
||||
MAN = fdcontrol.8
|
||||
PROG= fdcontrol
|
||||
WARNS?= 2
|
||||
MAN= fdcontrol.8
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user