diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 14:00:51 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 14:00:51 -0400 |
commit | 896e28812c51b9ffdf3efc00c7d7ef699e380a58 (patch) | |
tree | aaa25e093fb4a2ac4c57609e1f745e5ac0734ca8 /src/stdio/fsetpos.c | |
parent | 0b0d1fe1d4fbf8560577d81e5af0549683eac8ba (diff) |
formatting
Diffstat (limited to 'src/stdio/fsetpos.c')
-rw-r--r-- | src/stdio/fsetpos.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/fsetpos.c b/src/stdio/fsetpos.c index 8ec7cdd8..33c055ea 100644 --- a/src/stdio/fsetpos.c +++ b/src/stdio/fsetpos.c @@ -1,6 +1,7 @@ #include <stdio.h> /** set the file position indicator **/ + int fsetpos(FILE *stream, const fpos_t *pos) { (void)stream; (void)pos; @@ -16,6 +17,7 @@ FUNCTION(fgetpos). A successful call to THIS() clears the end-of-file indicator and discards any characters pushed back with FUNCTION(ungetc). ***/ + /* STDC(1) */ |