diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-29 00:43:20 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-29 00:43:20 +0000 |
commit | 0ed6029f1d376769a873154420930bb2c18a9ec3 (patch) | |
tree | 7f293f72916e24206441ca00f9458de715edc730 | |
parent | 586954af375e74023c24ba5d263564849935ec5d (diff) |
Add -Wmissing-prototypes too
-rw-r--r-- | sys/arch/i386/conf/Makefile.i386 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/conf/Makefile.i386 b/sys/arch/i386/conf/Makefile.i386 index eebdb82d8a2..bc57aa51ce1 100644 --- a/sys/arch/i386/conf/Makefile.i386 +++ b/sys/arch/i386/conf/Makefile.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.i386,v 1.18 1997/03/29 07:12:04 tholo Exp $ +# $OpenBSD: Makefile.i386,v 1.19 1997/05/29 00:43:19 niklas Exp $ # $NetBSD: Makefile.i386,v 1.67 1996/05/11 16:12:11 mycroft Exp $ # Makefile for OpenBSD @@ -39,8 +39,8 @@ I386= $S/arch/i386 INCLUDES= -nostdinc -I. -I$S/arch -I$S CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -Di386 -CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wno-uninitialized \ - -Wno-format +CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ + -Wno-uninitialized -Wno-format .if ${IDENT:M-D*_CPU} == ${IDENT:M-DI486_CPU} CMACHFLAGS= -m486 |