diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2015-11-02 16:34:49 -0500 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2015-11-02 16:34:49 -0500 |
commit | 72e18faf625a9644b4d1fd8957433db482c42aae (patch) | |
tree | c971f62b1524cea4552745a52b5559faa3abfa43 /newlib/libc/stdio/fseek.c | |
parent | 50455323229d54a19ffc0a6fa2e1f1f24898b9c4 (diff) | |
download | newlib-72e18faf625a9644b4d1fd8957433db482c42aae.zip newlib-72e18faf625a9644b4d1fd8957433db482c42aae.tar.gz newlib-72e18faf625a9644b4d1fd8957433db482c42aae.tar.bz2 |
Add missing semicolons to prototypes.
* libc/stdio/fseek.c: Add missing semicolons to prototypes in
SYNOPSIS.
* libc/stdio/fwide.c: Ditto.
* libc/stdio64/fseeko64.c: Ditto.
* libc/string/strtok.c: Ditto.
* libc/string/wcstok.c: Ditto.
* libm/math/w_cosh.c: Ditto.
* libm/math/w_fmod.c: Ditto.
* libm/mathfp/s_cosh.c: Ditto.
* libm/mathfp/s_fmod.c: Ditto.
Diffstat (limited to 'newlib/libc/stdio/fseek.c')
-rw-r--r-- | newlib/libc/stdio/fseek.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/newlib/libc/stdio/fseek.c b/newlib/libc/stdio/fseek.c index 34147fa..b8fc36a 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]>; |