diff options
Diffstat (limited to 'src/stdio/fputs.c')
| -rw-r--r-- | src/stdio/fputs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/fputs.c b/src/stdio/fputs.c index 22ee7d28..4f5cea8d 100644 --- a/src/stdio/fputs.c +++ b/src/stdio/fputs.c @@ -2,6 +2,7 @@ #include "_stdio.h" /** write a string to a file stream **/ + int fputs(const char * restrict s, FILE * restrict stream) { flockfile(stream); @@ -23,6 +24,7 @@ int fputs(const char * restrict s, FILE * restrict stream) writes the string ARGUMENT(s) to ARGUMENT(stream), not including the terminating CHAR(\0) character. ***/ + /* STDC(1) */ |
