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/fwide.c | |
parent | 50455323229d54a19ffc0a6fa2e1f1f24898b9c4 (diff) | |
download | cygnal-72e18faf625a9644b4d1fd8957433db482c42aae.tar.gz cygnal-72e18faf625a9644b4d1fd8957433db482c42aae.tar.bz2 cygnal-72e18faf625a9644b4d1fd8957433db482c42aae.zip |
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/fwide.c')
-rw-r--r-- | newlib/libc/stdio/fwide.c | 8 |
1 files changed, 4 insertions, 4 deletions
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]>; |