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.
This commit is contained in:
@ -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]>;
|
||||
|
@ -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]>;
|
||||
|
@ -26,18 +26,18 @@ INDEX
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdio.h>
|
||||
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 <stdio.h>
|
||||
|
||||
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]>;
|
||||
|
@ -14,24 +14,24 @@ INDEX
|
||||
ANSI_SYNOPSIS
|
||||
#include <string.h>
|
||||
char *strtok(char *restrict <[source]>,
|
||||
const char *restrict <[delimiters]>)
|
||||
const char *restrict <[delimiters]>);
|
||||
char *strtok_r(char *restrict <[source]>,
|
||||
const char *restrict <[delimiters]>,
|
||||
char **<[lasts]>)
|
||||
char *strsep(char **<[source_ptr]>, const char *<[delimiters]>)
|
||||
char **<[lasts]>);
|
||||
char *strsep(char **<[source_ptr]>, const char *<[delimiters]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <string.h>
|
||||
char *strtok(<[source]>, <[delimiters]>)
|
||||
char *strtok(<[source]>, <[delimiters]>);
|
||||
char *<[source]>;
|
||||
char *<[delimiters]>;
|
||||
|
||||
char *strtok_r(<[source]>, <[delimiters]>, <[lasts]>)
|
||||
char *strtok_r(<[source]>, <[delimiters]>, <[lasts]>);
|
||||
char *<[source]>;
|
||||
char *<[delimiters]>;
|
||||
char **<[lasts]>;
|
||||
|
||||
char *strsep(<[source_ptr]>, <[delimiters]>)
|
||||
char *strsep(<[source_ptr]>, <[delimiters]>);
|
||||
char **<[source_ptr]>;
|
||||
char *<[delimiters]>;
|
||||
|
||||
|
@ -10,11 +10,11 @@ ANSI_SYNOPSIS
|
||||
#include <wchar.h>
|
||||
wchar_t *wcstok(wchar_t *__restrict <[source]>,
|
||||
const wchar_t *__restrict <[delimiters]>,
|
||||
wchar_t **__restrict <[lasts]>)
|
||||
wchar_t **__restrict <[lasts]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <wchar.h>
|
||||
wchar_t *wcstok(<[source]>, <[delimiters]>, <[lasts]>)
|
||||
wchar_t *wcstok(<[source]>, <[delimiters]>, <[lasts]>);
|
||||
wchar_t *__restrict <[source]>;
|
||||
wchar_t *__restrict <[delimiters]>;
|
||||
wchar_t **__restrict <[lasts]>;
|
||||
|
Reference in New Issue
Block a user