9a03b27dba
- Use foo(void) instead of foo(). - Use static where applicable. - Apply more const's when passing parameters - signed/unsigned madness - Avoid namespace collision by adding underscores. - For 64-bit architectures, use %zx instead of %x when necessary. - When storing constants, use const instead of variable. - Bump WARNS?= from 2 to 6
9 lines
93 B
Makefile
9 lines
93 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= vidcontrol
|
|
SRCS= vidcontrol.c decode.c
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.prog.mk>
|