diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-11-21 08:15:47 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-11-21 08:15:47 +0000 |
commit | 003c6aff00b2dd6b153d3835c98c0e6236841624 (patch) | |
tree | f961319c7405692fdce0034f8c527c2b66157c41 /usr.bin | |
parent | c8669454f1e714143b06bbba1343010221272cab (diff) |
use -Wmissing-prototypes
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/aucat/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/sndiod/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/aucat/Makefile b/usr.bin/aucat/Makefile index c3588efd647..2d35539aa2a 100644 --- a/usr.bin/aucat/Makefile +++ b/usr.bin/aucat/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.20 2013/11/19 07:24:57 ratchov Exp $ +# $OpenBSD: Makefile,v 1.21 2013/11/21 08:15:46 ratchov Exp $ PROG= aucat SRCS= aucat.c abuf.c aparams.c aproc.c dev.c midi.c file.c headers.c \ siofile.c miofile.c pipe.c wav.c dbg.c MAN= aucat.1 CFLAGS+=-DDEBUG -I${.CURDIR}/../../lib/libsndio -COPTS+= -Wall -Wstrict-prototypes -Wpointer-arith -Wundef +COPTS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wundef LDADD+= -lsndio .include <bsd.prog.mk> diff --git a/usr.bin/sndiod/Makefile b/usr.bin/sndiod/Makefile index bf85ceb0226..611075916f4 100644 --- a/usr.bin/sndiod/Makefile +++ b/usr.bin/sndiod/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.2 2013/11/19 07:24:57 ratchov Exp $ +# $OpenBSD: Makefile,v 1.3 2013/11/21 08:15:46 ratchov Exp $ PROG= sndiod SRCS= abuf.c dev.c dsp.c file.c listen.c midi.c miofile.c \ opt.c siofile.c sndiod.c sock.c utils.c MAN= sndiod.1 CFLAGS+=-DDEBUG -I${.CURDIR}/../../lib/libsndio -COPTS+= -Wall -Wstrict-prototypes -Wpointer-arith -Wundef +COPTS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wundef LDADD+= -lsndio .include <bsd.prog.mk> |