Fix SYNOPSIS prototypes without marked up parameter names
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk> * libc/stdlib/llabs.c: Mark up parameter name in ANSI_SYNOPSIS. * libc/time/tzset.c: Add and mark up parameter in SYNOPSIS. * libm/common/s_nan.c: Ditto. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
parent
6c75f6fcb2
commit
ff4a4f2655
@ -1,3 +1,9 @@
|
||||
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
||||
|
||||
* libc/stdlib/llabs.c: Mark up parameter name in ANSI_SYNOPSIS.
|
||||
* libc/time/tzset.c: Add and mark up parameter in SYNOPSIS.
|
||||
* libm/common/s_nan.c: Ditto.
|
||||
|
||||
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
||||
|
||||
* libc/stdio/getchar_u.c: Fix a non-ANSI prototype in SYNOPSIS.
|
||||
|
@ -7,7 +7,7 @@ INDEX
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
long long llabs(long long j);
|
||||
long long llabs(long long <[j]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <stdlib.h>
|
||||
|
@ -10,12 +10,12 @@ INDEX
|
||||
ANSI_SYNOPSIS
|
||||
#include <time.h>
|
||||
void tzset(void);
|
||||
void _tzset_r (struct _reent *);
|
||||
void _tzset_r (struct _reent *<[reent_ptr]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <time.h>
|
||||
void tzset();
|
||||
void _tzset_r (reent_ptr)
|
||||
void _tzset_r (<[reent_ptr]>);
|
||||
struct _reent *reent_ptr;
|
||||
|
||||
DESCRIPTION
|
||||
|
@ -14,8 +14,8 @@ INDEX
|
||||
|
||||
ANSI_SYNOPSIS
|
||||
#include <math.h>
|
||||
double nan(const char *);
|
||||
float nanf(const char *);
|
||||
double nan(const char *<[unused]>);
|
||||
float nanf(const char *<[unused]>);
|
||||
|
||||
TRAD_SYNOPSIS
|
||||
#include <math.h>
|
||||
|
Loading…
Reference in New Issue
Block a user