summaryrefslogtreecommitdiff
path: root/src/stdio/fgetc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fgetc.c')
-rw-r--r--src/stdio/fgetc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/fgetc.c b/src/stdio/fgetc.c
index 56f1a348..a49a3ce8 100644
--- a/src/stdio/fgetc.c
+++ b/src/stdio/fgetc.c
@@ -8,6 +8,7 @@
#else
/** read a character from a file stream **/
+
int fgetc(FILE *stream)
{
flockfile(stream);
@@ -27,6 +28,7 @@ reads the next character from ARGUMENT(stream) as an
TYPE(unsigned char) converted to an TYPE(int). The file position indicator
of ARGUMENT(stream) is advanced.
***/
+
/*
STDC(1)
*/