diff options
| author | lukem <lukem@NetBSD.org> | 2005-06-01 11:06:01 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2005-06-01 11:06:01 +0000 |
| commit | 7fbaf47f83cec9d34febfdcccf485f0303e44142 (patch) | |
| tree | 4ffba83329fcd0e3a937a8d000e9f6df0fbe8c91 /lib/libc/stdio | |
| parent | 51d46cb132e01e3102afbb182ed85dcdbdd238b8 (diff) | |
Compile the following files with -Wno-uninitialized:
vfprintf.c See rev 1.46 for why we can't fix this.
vfwprintf.c Needs some effort
vfwscanf.c Needs some effort
Diffstat (limited to 'lib/libc/stdio')
| -rw-r--r-- | lib/libc/stdio/Makefile.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libc/stdio/Makefile.inc b/lib/libc/stdio/Makefile.inc index 0f9224968db..b8a7a827596 100644 --- a/lib/libc/stdio/Makefile.inc +++ b/lib/libc/stdio/Makefile.inc @@ -1,11 +1,16 @@ # from: @(#)Makefile.inc 5.7 (Berkeley) 6/27/91 -# $NetBSD: Makefile.inc,v 1.29 2005/05/14 23:51:02 christos Exp $ +# $NetBSD: Makefile.inc,v 1.30 2005/06/01 11:06:01 lukem Exp $ # stdio sources .PATH: ${.CURDIR}/stdio CPPFLAGS+=-DFLOATING_POINT +COPTS.vfprintf.c+= -Wno-uninitialized # see rev 1.46 for why + +COPTS.vfwprintf.c+= -Wno-uninitialized # XXX: various to be fixed +COPTS.vfwscanf.c+= -Wno-uninitialized # XXX: various to be fixed + SRCS+= asprintf.c clrerr.c fclose.c fdopen.c feof.c ferror.c fflush.c \ fgetc.c fgetln.c fgetpos.c fgets.c fgetstr.c fgetwc.c fgetwln.c \ fgetws.c fileno.c findfp.c flags.c flockfile.c fopen.c fparseln.c \ |
