diff options
Diffstat (limited to 'src/stdio/putc.c')
-rw-r--r-- | src/stdio/putc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/putc.c b/src/stdio/putc.c index c3509ee2..48e11719 100644 --- a/src/stdio/putc.c +++ b/src/stdio/putc.c @@ -1,6 +1,7 @@ #include <stdio.h> /** write a character to a file stream **/ + int putc(int c, FILE *stream) { /* @@ -14,6 +15,7 @@ int putc(int c, FILE *stream) is equivalent of FUNCTION(fputc), except that if it is defined as a macro, it may evaluate ARGUMENT(stream) more than once. ***/ + /* STDC(1) */ |