summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/setbuf.c
diff options
context:
space:
mode:
authorRobert Drehmel <robert@FreeBSD.org>2002-08-14 23:45:42 +0000
committerRobert Drehmel <robert@FreeBSD.org>2002-08-14 23:45:42 +0000
commit3248d0a51743c450cf9c656c793102b98b5aa44e (patch)
tree4a5ee2a856f08d941a04f571a20db00d3d4f6f88 /lib/libc/stdio/setbuf.c
parent620035ef8982a70259ba414df3039c0d1625aa58 (diff)
Notes
Diffstat (limited to 'lib/libc/stdio/setbuf.c')
-rw-r--r--lib/libc/stdio/setbuf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/stdio/setbuf.c b/lib/libc/stdio/setbuf.c
index e6209fd298ef..a1edef4a818f 100644
--- a/lib/libc/stdio/setbuf.c
+++ b/lib/libc/stdio/setbuf.c
@@ -44,9 +44,7 @@ __FBSDID("$FreeBSD$");
#include "local.h"
void
-setbuf(fp, buf)
- FILE *fp;
- char *buf;
+setbuf(FILE *__restrict fp, char *__restrict buf)
{
(void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
}