From 4accb821f18b52fbbaf0d1e140d9ad40d85a1b97 Mon Sep 17 00:00:00 2001 From: robert Date: Thu, 15 Aug 2002 09:47:10 +0000 Subject: - Introduce the 'restrict' qualifier to function prototypes and definitions to comply with IEEE Std 1003.1-2001. - Update the manual pages. --- lib/libc/stdio/fprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/stdio/fprintf.c') diff --git a/lib/libc/stdio/fprintf.c b/lib/libc/stdio/fprintf.c index 55ae1d5..4232cc7 100644 --- a/lib/libc/stdio/fprintf.c +++ b/lib/libc/stdio/fprintf.c @@ -44,7 +44,7 @@ __FBSDID("$FreeBSD$"); #include int -fprintf(FILE *fp, const char *fmt, ...) +fprintf(FILE *__restrict fp, const char *__restrict fmt, ...) { int ret; va_list ap; -- cgit v1.1