From 72e18faf625a9644b4d1fd8957433db482c42aae Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Mon, 2 Nov 2015 16:34:49 -0500 Subject: 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. --- newlib/libc/stdio64/fseeko64.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'newlib/libc/stdio64/fseeko64.c') diff --git a/newlib/libc/stdio64/fseeko64.c b/newlib/libc/stdio64/fseeko64.c index d605dd09b..34eee6783 100644 --- a/newlib/libc/stdio64/fseeko64.c +++ b/newlib/libc/stdio64/fseeko64.c @@ -26,18 +26,18 @@ INDEX ANSI_SYNOPSIS #include - int fseeko64(FILE *<[fp]>, _off64_t <[offset]>, int <[whence]>) + int fseeko64(FILE *<[fp]>, _off64_t <[offset]>, int <[whence]>); int _fseeko64_r (struct _reent *<[ptr]>, FILE *<[fp]>, - _off64_t <[offset]>, int <[whence]>) + _off64_t <[offset]>, int <[whence]>); TRAD_SYNOPSIS #include - int fseeko64(<[fp]>, <[offset]>, <[whence]>) + int fseeko64(<[fp]>, <[offset]>, <[whence]>); FILE *<[fp]>; _off64_t <[offset]>; int <[whence]>; - int _fseeko64_r (<[ptr]>, <[fp]>, <[offset]>, <[whence]>) + int _fseeko64_r (<[ptr]>, <[fp]>, <[offset]>, <[whence]>); struct _reent *<[ptr]>; FILE *<[fp]>; _off64_t <[offset]>; -- cgit v1.2.3