diff options
Diffstat (limited to 'src/stdio/ungetc.c')
-rw-r--r-- | src/stdio/ungetc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/ungetc.c b/src/stdio/ungetc.c index 5629679a..c34f4d20 100644 --- a/src/stdio/ungetc.c +++ b/src/stdio/ungetc.c @@ -2,6 +2,7 @@ #include "_stdio.h" /** push a character back into an input stream **/ + int ungetc(int c, FILE *stream) { (void)c; (void)stream; @@ -32,6 +33,7 @@ position indicator is decremented. Calling THIS() on a binary stream when the file position indicator is zero is obsolete in ISO/IEC 9899:1999. ***/ + /* STDC(1) */ |