diff options
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r-- | newlib/libc/stdio/fseek.c | 16 | ||||
-rw-r--r-- | newlib/libc/stdio/fwide.c | 8 |
2 files changed, 12 insertions, 12 deletions
diff --git a/newlib/libc/stdio/fseek.c b/newlib/libc/stdio/fseek.c index 34147faff..b8fc36a04 100644 --- a/newlib/libc/stdio/fseek.c +++ b/newlib/libc/stdio/fseek.c @@ -30,32 +30,32 @@ INDEX ANSI_SYNOPSIS #include <stdio.h> - int fseek(FILE *<[fp]>, long <[offset]>, int <[whence]>) - int fseeko(FILE *<[fp]>, off_t <[offset]>, int <[whence]>) + int fseek(FILE *<[fp]>, long <[offset]>, int <[whence]>); + int fseeko(FILE *<[fp]>, off_t <[offset]>, int <[whence]>); int _fseek_r(struct _reent *<[ptr]>, FILE *<[fp]>, - long <[offset]>, int <[whence]>) + long <[offset]>, int <[whence]>); int _fseeko_r(struct _reent *<[ptr]>, FILE *<[fp]>, - off_t <[offset]>, int <[whence]>) + off_t <[offset]>, int <[whence]>); TRAD_SYNOPSIS #include <stdio.h> - int fseek(<[fp]>, <[offset]>, <[whence]>) + int fseek(<[fp]>, <[offset]>, <[whence]>); FILE *<[fp]>; long <[offset]>; int <[whence]>; - int fseeko(<[fp]>, <[offset]>, <[whence]>) + int fseeko(<[fp]>, <[offset]>, <[whence]>); FILE *<[fp]>; off_t <[offset]>; int <[whence]>; - int _fseek_r(<[ptr]>, <[fp]>, <[offset]>, <[whence]>) + int _fseek_r(<[ptr]>, <[fp]>, <[offset]>, <[whence]>); struct _reent *<[ptr]>; FILE *<[fp]>; long <[offset]>; int <[whence]>; - int _fseeko_r(<[ptr]>, <[fp]>, <[offset]>, <[whence]>) + int _fseeko_r(<[ptr]>, <[fp]>, <[offset]>, <[whence]>); struct _reent *<[ptr]>; FILE *<[fp]>; off_t <[offset]>; diff --git a/newlib/libc/stdio/fwide.c b/newlib/libc/stdio/fwide.c index a060d8f65..b2aaf8a62 100644 --- a/newlib/libc/stdio/fwide.c +++ b/newlib/libc/stdio/fwide.c @@ -9,17 +9,17 @@ INDEX ANSI_SYNOPSIS #include <wchar.h> - int fwide(FILE *<[fp]>, int <[mode]>) + int fwide(FILE *<[fp]>, int <[mode]>); - int _fwide_r(struct _reent *<[ptr]>, FILE *<[fp]>, int <[mode]>) + int _fwide_r(struct _reent *<[ptr]>, FILE *<[fp]>, int <[mode]>); TRAD_SYNOPSIS #include <wchar.h> - int fwide(<[fp]>, <[mode]>) + int fwide(<[fp]>, <[mode]>); FILE *<[fp]>; int <[mode]>; - int _fwide_r(<[ptr]>, <[fp]>, <[mode]>) + int _fwide_r(<[ptr]>, <[fp]>, <[mode]>); struct _reent *<[ptr]>; FILE *<[fp]>; int <[mode]>; |