mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-18 23:12:15 +08:00
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>
|
2015-06-23 Jon Turney <jon.turney@dronecode.org.uk>
|
||||||
|
|
||||||
* libc/stdio/getchar_u.c: Fix a non-ANSI prototype in SYNOPSIS.
|
* libc/stdio/getchar_u.c: Fix a non-ANSI prototype in SYNOPSIS.
|
||||||
|
@ -7,7 +7,7 @@ INDEX
|
|||||||
|
|
||||||
ANSI_SYNOPSIS
|
ANSI_SYNOPSIS
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
long long llabs(long long j);
|
long long llabs(long long <[j]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
TRAD_SYNOPSIS
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -10,12 +10,12 @@ INDEX
|
|||||||
ANSI_SYNOPSIS
|
ANSI_SYNOPSIS
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
void tzset(void);
|
void tzset(void);
|
||||||
void _tzset_r (struct _reent *);
|
void _tzset_r (struct _reent *<[reent_ptr]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
TRAD_SYNOPSIS
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
void tzset();
|
void tzset();
|
||||||
void _tzset_r (reent_ptr)
|
void _tzset_r (<[reent_ptr]>);
|
||||||
struct _reent *reent_ptr;
|
struct _reent *reent_ptr;
|
||||||
|
|
||||||
DESCRIPTION
|
DESCRIPTION
|
||||||
|
@ -14,8 +14,8 @@ INDEX
|
|||||||
|
|
||||||
ANSI_SYNOPSIS
|
ANSI_SYNOPSIS
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
double nan(const char *);
|
double nan(const char *<[unused]>);
|
||||||
float nanf(const char *);
|
float nanf(const char *<[unused]>);
|
||||||
|
|
||||||
TRAD_SYNOPSIS
|
TRAD_SYNOPSIS
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user