summaryrefslogtreecommitdiff
path: root/src/stdio/getc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/getc.c')
-rw-r--r--src/stdio/getc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/getc.c b/src/stdio/getc.c
index 11a75d4e..f176ef5b 100644
--- a/src/stdio/getc.c
+++ b/src/stdio/getc.c
@@ -1,6 +1,7 @@
#include <stdio.h>
/** read a character from a file stream **/
+
int getc(FILE *stream)
{
/*
@@ -14,6 +15,7 @@ int getc(FILE *stream)
is the equivalent of FUNCTION(fgetc) except that if it is
defined as a macro, it may evaluate ARGUMENT(stream) more than once.
***/
+
/*
STDC(1)
*/