4c1f1c62ca
fdcontrol/fdcontrol.c: - Add const constraint to an intermediate value which is not supposed to be changed elsewhere. fdread/fdread.c: - Use _devname in favor of devname to avoid name conflicit. - -1 is less than any positive number so in order to get the block to function, we should get the block a little earlier. - Cast to remove signed when we are sure that a return value is positive, or is compared with an positive number (tracknumber of a floppy disk is not likely to have UINT_MAX/2 anyway) fdread/fdutil.c: - Use more specific initializer fdwrite/fdwrite.c: - Use static on format_track since it's not referenced in other places. - Use const char* to represent string constant. Bump WARNS accordingly.
16 lines
217 B
Makefile
16 lines
217 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../fdread
|
|
|
|
PROG= fdcontrol
|
|
SRCS= fdcontrol.c fdutil.c
|
|
WARNS?= 6
|
|
CFLAGS+= -I${.CURDIR}/../fdread
|
|
MAN= fdcontrol.8
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|