diff options
Diffstat (limited to 'lib/libc/stdio/fputs.c')
-rw-r--r-- | lib/libc/stdio/fputs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/fputs.c b/lib/libc/stdio/fputs.c index e209659..812c37d 100644 --- a/lib/libc/stdio/fputs.c +++ b/lib/libc/stdio/fputs.c @@ -53,8 +53,8 @@ __FBSDID("$FreeBSD$"); */ int fputs(s, fp) - const char *s; - FILE *fp; + const char * __restrict s; + FILE * __restrict fp; { int retval; struct __suio uio; |