Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2015-06-23 15:00:57 +0300
committerJon TURNEY <jon.turney@dronecode.org.uk>2015-06-23 19:30:22 +0300
commitff4a4f2655dc5e1da47b0b4bcf8931a90d1a1914 (patch)
treeae54ea870fd174677f65d990e94ca3eee4588cf7 /newlib/libc/time/tzset.c
parent6c75f6fcb280837e261568a5dd80a23235ddb28f (diff)
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>
Diffstat (limited to 'newlib/libc/time/tzset.c')
-rw-r--r--newlib/libc/time/tzset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/time/tzset.c b/newlib/libc/time/tzset.c
index 5c421a58e..e0750e1fd 100644
--- a/newlib/libc/time/tzset.c
+++ b/newlib/libc/time/tzset.c
@@ -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