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:
Jon TURNEY 2015-06-23 13:00:57 +01:00
parent 6c75f6fcb2
commit ff4a4f2655
4 changed files with 11 additions and 5 deletions

View File

@ -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.

View File

@ -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>

View File

@ -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

View File

@ -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>