From cd5ca96599d24e7c9375719e86b16b5d3165e931 Mon Sep 17 00:00:00 2001 From: tjr Date: Fri, 6 Sep 2002 11:24:06 +0000 Subject: Style: One space between "restrict" qualifier and "*". --- lib/libc/stdio/setbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/stdio/setbuf.c') diff --git a/lib/libc/stdio/setbuf.c b/lib/libc/stdio/setbuf.c index a1edef4..348104c 100644 --- a/lib/libc/stdio/setbuf.c +++ b/lib/libc/stdio/setbuf.c @@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$"); #include "local.h" void -setbuf(FILE *__restrict fp, char *__restrict buf) +setbuf(FILE * __restrict fp, char * __restrict buf) { (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ); } -- cgit v1.1