diff options
Diffstat (limited to 'src/stdio/fputs.c')
-rw-r--r-- | src/stdio/fputs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/fputs.c b/src/stdio/fputs.c index e6bdb204..b41bc8c7 100644 --- a/src/stdio/fputs.c +++ b/src/stdio/fputs.c @@ -1,6 +1,6 @@ #include "stdio_impl.h" -int fputs(const char *s, FILE *f) +int fputs(const char *restrict s, FILE *restrict f) { size_t l = strlen(s); if (!l) return 0; |