2008-10-31 Jeff Johnston <jjohnstn@redhat.com>

* libc/stdio/diprintf.c: Modify documentation so eclipse newlib
        libhover docs generate properly.
        * libc/stdio/dprintf.c: Ditto.
        * libc/stdio/fflush.c: Ditto.
        * libc/stdio/fopencookie.c: Ditto.
        * libc/stdio/fread.c: Ditto.
        * libc/stdio/fsetpos.c: Ditto.
        * libc/stdio/getc_u.c: Ditto.
        * libc/stdio/getchar_u.c: Ditto.
        * libc/stdio/putc_u.c: Ditto.
        * libc/stdio/putchar_u.c: Ditto.
        * libc/stdio/remove.c: Ditto.
        * libc/stdio/siprintf.c: Ditto.
        * libc/stdio/siscanf.c: Ditto.
        * libc/stdio/sprintf.c: Ditto.
        * libc/stdio/sscanf.c: Ditto.
        * libc/stdio/vfprintf.c: Ditto.
        * libc/stdio/vfscanf.c: Ditto.
        * libc/stdio/viprintf.c: Ditto.
        * libc/stdio/viscanf.c: Ditto.
        * libc/stdlib/calloc.c: Ditto.
        * libc/stdlib/efgcvt.c: Ditto.
        * libc/stdlib/envlock.c: Ditto.
        * libc/time/asctime.c: Ditto.
        * libc/time/ctime.c: Ditto.
        * libc/time/gmtime.c: Ditto.
        * libc/time/lcltime.c: Ditto.
        * libc/time/tzset.c: Ditto.
        * libc/stdlib/envlock.h: Moved to libc/include.
This commit is contained in:
Jeff Johnston 2008-10-31 21:08:03 +00:00
parent d456d606e3
commit 1dc1ccd4ae
29 changed files with 191 additions and 90 deletions

View File

@ -1,3 +1,35 @@
2008-10-31 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdio/diprintf.c: Modify documentation so eclipse newlib
libhover docs generate properly.
* libc/stdio/dprintf.c: Ditto.
* libc/stdio/fflush.c: Ditto.
* libc/stdio/fopencookie.c: Ditto.
* libc/stdio/fread.c: Ditto.
* libc/stdio/fsetpos.c: Ditto.
* libc/stdio/getc_u.c: Ditto.
* libc/stdio/getchar_u.c: Ditto.
* libc/stdio/putc_u.c: Ditto.
* libc/stdio/putchar_u.c: Ditto.
* libc/stdio/remove.c: Ditto.
* libc/stdio/siprintf.c: Ditto.
* libc/stdio/siscanf.c: Ditto.
* libc/stdio/sprintf.c: Ditto.
* libc/stdio/sscanf.c: Ditto.
* libc/stdio/vfprintf.c: Ditto.
* libc/stdio/vfscanf.c: Ditto.
* libc/stdio/viprintf.c: Ditto.
* libc/stdio/viscanf.c: Ditto.
* libc/stdlib/calloc.c: Ditto.
* libc/stdlib/efgcvt.c: Ditto.
* libc/stdlib/envlock.c: Ditto.
* libc/time/asctime.c: Ditto.
* libc/time/ctime.c: Ditto.
* libc/time/gmtime.c: Ditto.
* libc/time/lcltime.c: Ditto.
* libc/time/tzset.c: Ditto.
* libc/stdlib/envlock.h: Moved to libc/include.
2008-10-31 Jeff Johnston <jjohnstn@redhat.com> 2008-10-31 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/limits.h: Add ARG_MAX, PATH_MAX, and _POSIX2_RE_DUP_MAX. * libc/include/limits.h: Add ARG_MAX, PATH_MAX, and _POSIX2_RE_DUP_MAX.

View File

@ -9,8 +9,12 @@ FUNCTION
INDEX INDEX
diprintf diprintf
INDEX
_diprintf_r
INDEX INDEX
vdiprintf vdiprintf
INDEX
_vdiprintf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
@ -19,7 +23,7 @@ ANSI_SYNOPSIS
int vdiprintf(int <[fd]>, const char *<[format]>, va_list <[ap]>); int vdiprintf(int <[fd]>, const char *<[format]>, va_list <[ap]>);
int _diprintf_r(struct _reent *<[ptr]>, int <[fd]>, int _diprintf_r(struct _reent *<[ptr]>, int <[fd]>,
const char *<[format]>, ...); const char *<[format]>, ...);
int _vidprintf_r(struct _reent *<[ptr]>, int <[fd]>, int _vdiprintf_r(struct _reent *<[ptr]>, int <[fd]>,
const char *<[format]>, va_list <[ap]>); const char *<[format]>, va_list <[ap]>);
DESCRIPTION DESCRIPTION

View File

@ -9,8 +9,12 @@ FUNCTION
INDEX INDEX
dprintf dprintf
INDEX
_dprintf_r
INDEX INDEX
vdprintf vdprintf
INDEX
_vdprintf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>

View File

@ -21,6 +21,8 @@ FUNCTION
INDEX INDEX
fflush fflush
INDEX
_fflush_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>

View File

@ -12,6 +12,13 @@ INDEX
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
FILE *fopencookie(const void *<[cookie]>, const char *<[mode]>,
cookie_io_functions_t <[functions]>);
DESCRIPTION
<<fopencookie>> creates a <<FILE>> stream where I/O is performed using
custom callbacks. The callbacks are registered via the structure:
typedef ssize_t (*cookie_read_function_t)(void *_cookie, char *_buf, typedef ssize_t (*cookie_read_function_t)(void *_cookie, char *_buf,
size_t _n); size_t _n);
typedef ssize_t (*cookie_write_function_t)(void *_cookie, typedef ssize_t (*cookie_write_function_t)(void *_cookie,
@ -19,12 +26,6 @@ ANSI_SYNOPSIS
typedef int (*cookie_seek_function_t)(void *_cookie, off_t *_off, typedef int (*cookie_seek_function_t)(void *_cookie, off_t *_off,
int _whence); int _whence);
typedef int (*cookie_close_function_t)(void *_cookie); typedef int (*cookie_close_function_t)(void *_cookie);
FILE *fopencookie(const void *<[cookie]>, const char *<[mode]>,
cookie_io_functions_t <[functions]>);
DESCRIPTION
<<fopencookie>> creates a <<FILE>> stream where I/O is performed using
custom callbacks. The callbacks are registered via the structure:
. typedef struct . typedef struct
. { . {

View File

@ -31,8 +31,7 @@ ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
size_t _fread_r(struct _reent *<[ptr]>, void *<[buf]>, size_t _fread_r(struct _reent *<[ptr]>, void *<[buf]>,
size_t <[size]>, size_t <[count]>, size_t <[size]>, size_t <[count]>, FILE *<[fp]>);
FILE *<[fp]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <stdio.h> #include <stdio.h>

View File

@ -27,7 +27,7 @@ INDEX
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
int fsetpos(FILE *<[fp]>, const fpos_t *<[pos]>); int fsetpos(FILE *<[fp]>, const fpos_t *<[pos]>);
int _fsetpos_r(struct _reent *<[ptr]>, FILE *<[fp]>, l int _fsetpos_r(struct _reent *<[ptr]>, FILE *<[fp]>,
const fpos_t *<[pos]>); const fpos_t *<[pos]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS

View File

@ -24,7 +24,7 @@ INDEX
INDEX INDEX
_getc_unlocked_r _getc_unlocked_r
POSIX_SYNOPSIS SYNOPSIS
#include <stdio.h> #include <stdio.h>
int getc_unlocked(FILE *<[fp]>); int getc_unlocked(FILE *<[fp]>);

View File

@ -24,7 +24,7 @@ INDEX
INDEX INDEX
_getchar_unlocked_r _getchar_unlocked_r
POSIX_SYNOPSIS SYNOPSIS
#include <stdio.h> #include <stdio.h>
int getchar_unlocked(); int getchar_unlocked();

View File

@ -24,7 +24,7 @@ INDEX
INDEX INDEX
_putc_unlocked_r _putc_unlocked_r
POSIX_SYNOPSIS SYNOPSIS
#include <stdio.h> #include <stdio.h>
int putc_unlocked(int <[ch]>, FILE *<[fp]>); int putc_unlocked(int <[ch]>, FILE *<[fp]>);

View File

@ -22,7 +22,7 @@ FUNCTION
INDEX INDEX
putchar_unlocked putchar_unlocked
POSIX_SYNOPSIS SYNOPSIS
#include <stdio.h> #include <stdio.h>
int putchar_unlocked(int <[ch]>); int putchar_unlocked(int <[ch]>);

View File

@ -21,6 +21,8 @@ FUNCTION
INDEX INDEX
remove remove
INDEX
_remove_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>

View File

@ -21,42 +21,52 @@ FUNCTION
INDEX INDEX
fiprintf fiprintf
INDEX
_fiprintf_r
INDEX INDEX
iprintf iprintf
INDEX
_iprintf_r
INDEX INDEX
siprintf siprintf
INDEX
_siprintf_r
INDEX INDEX
sniprintf sniprintf
INDEX
_sniprintf_r
INDEX INDEX
asiprintf asiprintf
INDEX
_asiprintf_r
INDEX INDEX
asniprintf asniprintf
INDEX
_asniprintf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
int iprintf(const char *<[format]> [, <[arg]>, ...]); int iprintf(const char *<[format]>, ...);
int fiprintf(FILE *<[fd]>, const char *<[format]> [, <[arg]>, ...]); int fiprintf(FILE *<[fd]>, const char *<[format]> , ...);
int siprintf(char *<[str]>, const char *<[format]> [, <[arg]>, ...]); int siprintf(char *<[str]>, const char *<[format]>, ...);
int sniprintf(char *<[str]>, size_t <[size]>, const char *<[format]> int sniprintf(char *<[str]>, size_t <[size]>, const char *<[format]>,
[, <[arg]>, ...]); ...);
int asiprintf(char **<[strp]>, const char *<[format]> [, <[arg]>, ...]); int asiprintf(char **<[strp]>, const char *<[format]>, ...);
char *asniprintf(char *<[str]>, size_t *<[size]>, const char *<[format]> char *asniprintf(char *<[str]>, size_t *<[size]>,
[, <[arg]>, ...]); const char *<[format]>, ...);
int _iprintf_r(struct _reent *<[ptr]>, const char *<[format]> int _iprintf_r(struct _reent *<[ptr]>, const char *<[format]>, ...);
[, <[arg]>, ...]);
int _fiprintf_r(struct _reent *<[ptr]>, FILE *<[fd]>, int _fiprintf_r(struct _reent *<[ptr]>, FILE *<[fd]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
int _siprintf_r(struct _reent *<[ptr]>, char *<[str]>, int _siprintf_r(struct _reent *<[ptr]>, char *<[str]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
int _sniprintf_r(struct _reent *<[ptr]>, char *<[str]>, size_t <[size]>, int _sniprintf_r(struct _reent *<[ptr]>, char *<[str]>, size_t <[size]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
int _asiprintf_r(struct _reent *<[ptr]>, char **<[strp]>, int _asiprintf_r(struct _reent *<[ptr]>, char **<[strp]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
char *_asniprintf_r(struct _reent *<[ptr]>, char *<[str]>, char *_asniprintf_r(struct _reent *<[ptr]>, char *<[str]>,
size_t *<[size]>, const char *<[format]> size_t *<[size]>, const char *<[format]>, ...);
[, <[arg]>, ...]);
DESCRIPTION DESCRIPTION
<<iprintf>>, <<fiprintf>>, <<siprintf>>, <<sniprintf>>, <<iprintf>>, <<fiprintf>>, <<siprintf>>, <<sniprintf>>,

View File

@ -21,25 +21,29 @@ FUNCTION
INDEX INDEX
iscanf iscanf
INDEX
_iscanf_r
INDEX INDEX
fiscanf fiscanf
INDEX
_fiscanf_r
INDEX INDEX
siscanf siscanf
INDEX
_siscanf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
int iscanf(const char *<[format]> [, <[arg]>, ...]); int iscanf(const char *<[format]>, ...);
int fiscanf(FILE *<[fd]>, const char *<[format]> [, <[arg]>, ...]); int fiscanf(FILE *<[fd]>, const char *<[format]>, ...);
int siscanf(const char *<[str]>, const char *<[format]> int siscanf(const char *<[str]>, const char *<[format]>, ...);
[, <[arg]>, ...]);
int _iscanf_r(struct _reent *<[ptr]>, const char *<[format]> int _iscanf_r(struct _reent *<[ptr]>, const char *<[format]>, ...);
[, <[arg]>, ...]); int _fiscanf_r(struct _reent *<[ptr]>, FILE *<[fd]>,
int _fiscanf_r(struct _reent *<[ptr]>, FILE *<[fd]>, const char *<[format]> const char *<[format]>, ...);
[, <[arg]>, ...]);
int _siscanf_r(struct _reent *<[ptr]>, const char *<[str]>, int _siscanf_r(struct _reent *<[ptr]>, const char *<[str]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
TRAD_SYNOPSIS TRAD_SYNOPSIS

View File

@ -21,42 +21,52 @@ FUNCTION
INDEX INDEX
fprintf fprintf
INDEX
_fprintf_r
INDEX INDEX
printf printf
INDEX
_printf_r
INDEX INDEX
asprintf asprintf
INDEX
_asprintf_r
INDEX INDEX
sprintf sprintf
INDEX
_sprintf_r
INDEX INDEX
snprintf snprintf
INDEX
_snprintf_r
INDEX INDEX
asnprintf asnprintf
INDEX
_asnprintf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
int printf(const char *<[format]> [, <[arg]>, ...]); int printf(const char *<[format]>, ...);
int fprintf(FILE *<[fd]>, const char *<[format]> [, <[arg]>, ...]); int fprintf(FILE *<[fd]>, const char *<[format]>, ...);
int sprintf(char *<[str]>, const char *<[format]> [, <[arg]>, ...]); int sprintf(char *<[str]>, const char *<[format]>, ...);
int snprintf(char *<[str]>, size_t <[size]>, const char *<[format]> int snprintf(char *<[str]>, size_t <[size]>, const char *<[format]>,
[, <[arg]>, ...]); ...);
int asprintf(char **<[strp]>, const char *<[format]> [, <[arg]>, ...]); int asprintf(char **<[strp]>, const char *<[format]>, ...);
char *asnprintf(char *<[str]>, size_t *<[size]>, const char *<[format]> char *asnprintf(char *<[str]>, size_t *<[size]>, const char *<[format]>,
[, <[arg]>, ...]); ...);
int _printf_r(struct _reent *<[ptr]>, const char *<[format]> int _printf_r(struct _reent *<[ptr]>, const char *<[format]>, ...);
[, <[arg]>, ...]);
int _fprintf_r(struct _reent *<[ptr]>, FILE *<[fd]>, int _fprintf_r(struct _reent *<[ptr]>, FILE *<[fd]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
int _sprintf_r(struct _reent *<[ptr]>, char *<[str]>, int _sprintf_r(struct _reent *<[ptr]>, char *<[str]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
int _snprintf_r(struct _reent *<[ptr]>, char *<[str]>, size_t <[size]>, int _snprintf_r(struct _reent *<[ptr]>, char *<[str]>, size_t <[size]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
int _asprintf_r(struct _reent *<[ptr]>, char **<[strp]>, int _asprintf_r(struct _reent *<[ptr]>, char **<[strp]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
char *_asnprintf_r(struct _reent *<[ptr]>, char *<[str]>, char *_asnprintf_r(struct _reent *<[ptr]>, char *<[str]>,
size_t *<[size]>, const char *<[format]> size_t *<[size]>, const char *<[format]>, ...);
[, <[arg]>, ...]);
DESCRIPTION DESCRIPTION
<<printf>> accepts a series of arguments, applies to each a <<printf>> accepts a series of arguments, applies to each a

View File

@ -21,25 +21,29 @@ FUNCTION
INDEX INDEX
scanf scanf
INDEX
_scanf_r
INDEX INDEX
fscanf fscanf
INDEX
_fscanf_r
INDEX INDEX
sscanf sscanf
INDEX
_sscanf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
int scanf(const char *<[format]> [, <[arg]>, ...]); int scanf(const char *<[format]>, ...);
int fscanf(FILE *<[fd]>, const char *<[format]> [, <[arg]>, ...]); int fscanf(FILE *<[fd]>, const char *<[format]>, ...);
int sscanf(const char *<[str]>, const char *<[format]> int sscanf(const char *<[str]>, const char *<[format]>, ...);
[, <[arg]>, ...]);
int _scanf_r(struct _reent *<[ptr]>, const char *<[format]> int _scanf_r(struct _reent *<[ptr]>, const char *<[format]>, ...);
[, <[arg]>, ...]); int _fscanf_r(struct _reent *<[ptr]>, FILE *<[fd]>,
int _fscanf_r(struct _reent *<[ptr]>, FILE *<[fd]>, const char *<[format]> const char *<[format]>, ...);
[, <[arg]>, ...]);
int _sscanf_r(struct _reent *<[ptr]>, const char *<[str]>, int _sscanf_r(struct _reent *<[ptr]>, const char *<[str]>,
const char *<[format]> [, <[arg]>, ...]); const char *<[format]>, ...);
TRAD_SYNOPSIS TRAD_SYNOPSIS

View File

@ -40,16 +40,28 @@ FUNCTION
INDEX INDEX
vfprintf vfprintf
INDEX
_vfprintf_r
INDEX INDEX
vprintf vprintf
INDEX
_vprintf_r
INDEX INDEX
vsprintf vsprintf
INDEX
_vsprintf_r
INDEX INDEX
vsnprintf vsnprintf
INDEX
_vsnprintf_r
INDEX INDEX
vasprintf vasprintf
INDEX
_vasprintf_r
INDEX INDEX
vasnprintf vasnprintf
INDEX
_vasnprintf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
@ -72,11 +84,9 @@ ANSI_SYNOPSIS
int _vasprintf_r(struct _reent *<[reent]>, char **<[str]>, int _vasprintf_r(struct _reent *<[reent]>, char **<[str]>,
const char *<[fmt]>, va_list <[list]>); const char *<[fmt]>, va_list <[list]>);
int _vsnprintf_r(struct _reent *<[reent]>, char *<[str]>, int _vsnprintf_r(struct _reent *<[reent]>, char *<[str]>,
size_t <[size]>, const char *<[fmt]>, size_t <[size]>, const char *<[fmt]>, va_list <[list]>);
va_list <[list]>);
char *_vasnprintf_r(struct _reent *<[reent]>, char *<[str]>, char *_vasnprintf_r(struct _reent *<[reent]>, char *<[str]>,
size_t *<[size]>, const char *<[fmt]>, size_t *<[size]>, const char *<[fmt]>, va_list <[list]>);
va_list <[list]>);
DESCRIPTION DESCRIPTION
<<vprintf>>, <<vfprintf>>, <<vasprintf>>, <<vsprintf>>, <<vsnprintf>>, <<vprintf>>, <<vfprintf>>, <<vasprintf>>, <<vsprintf>>, <<vsnprintf>>,

View File

@ -21,10 +21,16 @@ FUNCTION
INDEX INDEX
vfscanf vfscanf
INDEX
_vfscanf_r
INDEX INDEX
vscanf vscanf
INDEX
_vscanf_r
INDEX INDEX
vsscanf vsscanf
INDEX
_vsscanf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>

View File

@ -21,16 +21,28 @@ FUNCTION
INDEX INDEX
viprintf viprintf
INDEX
_viprintf_r
INDEX INDEX
vfiprintf vfiprintf
INDEX
_vfiprintf_r
INDEX INDEX
vsiprintf vsiprintf
INDEX
_vsiprintf_r
INDEX INDEX
vsniprintf vsniprintf
INDEX
_vsniprintf_r
INDEX INDEX
vasiprintf vasiprintf
INDEX
_vasiprintf_r
INDEX INDEX
vasniprintf vasniprintf
INDEX
_vasniprintf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>
@ -51,13 +63,11 @@ ANSI_SYNOPSIS
int _vsiprintf_r(struct _reent *<[reent]>, char *<[str]>, int _vsiprintf_r(struct _reent *<[reent]>, char *<[str]>,
const char *<[fmt]>, va_list <[list]>); const char *<[fmt]>, va_list <[list]>);
int _vsniprintf_r(struct _reent *<[reent]>, char *<[str]>, int _vsniprintf_r(struct _reent *<[reent]>, char *<[str]>,
size_t <[size]>, const char *<[fmt]>, size_t <[size]>, const char *<[fmt]>, va_list <[list]>);
va_list <[list]>);
int _vasiprintf_r(struct _reent *<[reent]>, char **<[str]>, int _vasiprintf_r(struct _reent *<[reent]>, char **<[str]>,
const char *<[fmt]>, va_list <[list]>); const char *<[fmt]>, va_list <[list]>);
char *_vasniprintf_r(struct _reent *<[reent]>, char *<[str]>, char *_vasniprintf_r(struct _reent *<[reent]>, char *<[str]>,
size_t *<[size]>, const char *<[fmt]>, size_t *<[size]>, const char *<[fmt]>, va_list <[list]>);
va_list <[list]>);
DESCRIPTION DESCRIPTION
<<viprintf>>, <<vfiprintf>>, <<vasiprintf>>, <<vsiprintf>>, <<viprintf>>, <<vfiprintf>>, <<vasiprintf>>, <<vsiprintf>>,

View File

@ -23,10 +23,16 @@ FUNCTION
INDEX INDEX
viscanf viscanf
INDEX
_viscanf_r
INDEX INDEX
vfiscanf vfiscanf
INDEX
_vfiscanf_r
INDEX INDEX
vsiscanf vsiscanf
INDEX
_vsiscanf_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdio.h> #include <stdio.h>

View File

@ -14,7 +14,7 @@ INDEX
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdlib.h> #include <stdlib.h>
void *calloc(size_t <[n]>, size_t <[s]>); void *calloc(size_t <[n]>, size_t <[s]>);
void *calloc_r(void *<[reent]>, size_t <n>, <size_t> <[s]>); void *_calloc_r(void *<[reent]>, size_t <[n]>, size_t <[s]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <stdlib.h> #include <stdlib.h>

View File

@ -4,8 +4,12 @@ FUNCTION
INDEX INDEX
ecvt ecvt
INDEX
ecvtf
INDEX INDEX
fcvt fcvt
INDEX
fcvtf
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <stdlib.h> #include <stdlib.h>

View File

@ -8,7 +8,7 @@ INDEX
__env_unlock __env_unlock
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include "envlock.h" #include <envlock.h>
void __env_lock (struct _reent *<[reent]>); void __env_lock (struct _reent *<[reent]>);
void __env_unlock (struct _reent *<[reent]>); void __env_unlock (struct _reent *<[reent]>);

View File

@ -1,15 +0,0 @@
/* envlock.h -- header file for env routines. */
#ifndef _INCLUDE_ENVLOCK_H_
#define _INCLUDE_ENVLOCK_H_
#include <_ansi.h>
#include <sys/reent.h>
#define ENV_LOCK __env_lock(reent_ptr)
#define ENV_UNLOCK __env_unlock(reent_ptr)
void _EXFUN(__env_lock,(struct _reent *reent));
void _EXFUN(__env_unlock,(struct _reent *reent));
#endif /* _INCLUDE_ENVLOCK_H_ */

View File

@ -22,7 +22,7 @@ INDEX
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <time.h> #include <time.h>
char *asctime(const struct tm *<[clock]>); char *asctime(const struct tm *<[clock]>);
char *asctime_r(const struct tm *<[clock]>, char *<[buf]>); char *_asctime_r(const struct tm *<[clock]>, char *<[buf]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <time.h> #include <time.h>

View File

@ -9,6 +9,8 @@ FUNCTION
INDEX INDEX
ctime ctime
INDEX
ctime_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <time.h> #include <time.h>

View File

@ -14,6 +14,8 @@ FUNCTION
INDEX INDEX
gmtime gmtime
INDEX
gmtime_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <time.h> #include <time.h>

View File

@ -8,6 +8,8 @@ FUNCTION
INDEX INDEX
localtime localtime
INDEX
localtime_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <time.h> #include <time.h>

View File

@ -4,6 +4,8 @@ FUNCTION
INDEX INDEX
tzset tzset
INDEX
_tzset_r
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <time.h> #include <time.h>