summaryrefslogtreecommitdiff
path: root/src/stdio/ftell.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/ftell.c')
-rw-r--r--src/stdio/ftell.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stdio/ftell.c b/src/stdio/ftell.c
index 796a468c..f1fab68a 100644
--- a/src/stdio/ftell.c
+++ b/src/stdio/ftell.c
@@ -1,6 +1,7 @@
#include <stdio.h>
/** get the file position indicator **/
+
long int ftell(FILE *stream)
{
(void)stream;
@@ -20,7 +21,5 @@ For binary streams, the indicator is the current byte position.
/*
UNSPECIFIED(The meaning of the file position indicator for text streams)
-*/
-/*
STDC(1)
*/