mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
- 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
8 lines
93 B
Makefile
8 lines
93 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= vidcontrol
|
|
SRCS= vidcontrol.c decode.c
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.prog.mk>
|