diff options
Diffstat (limited to 'src/stdio/setbuf.c')
-rw-r--r-- | src/stdio/setbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/setbuf.c b/src/stdio/setbuf.c index 1b98d503..74ad7834 100644 --- a/src/stdio/setbuf.c +++ b/src/stdio/setbuf.c @@ -1,6 +1,6 @@ #include <stdio.h> -void setbuf(FILE *f, char *buf) +void setbuf(FILE *restrict f, char *restrict buf) { setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ); } |