From 55bb705621151a27205467d724b9b4d77eff22c0 Mon Sep 17 00:00:00 2001 From: das Date: Sun, 1 Mar 2009 19:25:40 +0000 Subject: [PATCH] Use C99-style initializers. No functional change. Reviewed by: md5(1) --- lib/libc/stdio/findfp.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c index a8ce7afb488b..586e15c4f8bb 100644 --- a/lib/libc/stdio/findfp.c +++ b/lib/libc/stdio/findfp.c @@ -53,10 +53,15 @@ int __sdidinit; #define NDYNAMIC 10 /* add ten more whenever necessary */ -#define std(flags, file) \ - {0,0,0,flags,file,{0},0,__sF+file,__sclose,__sread,__sseek,__swrite} - /* p r w flags file _bf z cookie close read seek write */ - +#define std(flags, file) { \ + ._flags = (flags), \ + ._file = (file), \ + ._cookie = __sF + (file), \ + ._close = __sclose, \ + ._read = __sread, \ + ._seek = __sseek, \ + ._write = __swrite, \ +} /* the usual - (stdin + stdout + stderr) */ static FILE usual[FOPEN_MAX - 3]; static struct glue uglue = { NULL, FOPEN_MAX - 3, usual };