2013-11-25 Joel Sherrill <joel.sherrill@oarcorp.com>

* libc/iconv/lib/iconv.c, libc/time/strftime.c: Change "restrict<" to
	"restrict <" to fix formatting.
This commit is contained in:
Joel Sherrill 2013-11-25 17:55:33 +00:00
parent 05efdc441d
commit d264970f79
3 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2013-11-25 Joel Sherrill <joel.sherrill@oarcorp.com>
* libc/iconv/lib/iconv.c, libc/time/strftime.c: Change "restrict<" to
"restrict <" to fix formatting.
2013-11-25 Corinna Vinschen <vinschen@redhat.com> 2013-11-25 Corinna Vinschen <vinschen@redhat.com>
* libc/include/spawn.h (posix_spawn_file_actions_destroy): Fix typo * libc/include/spawn.h (posix_spawn_file_actions_destroy): Fix typo

View File

@ -46,9 +46,9 @@ ANSI_SYNOPSIS
iconv_t iconv_open (const char *<[to]>, const char *<[from]>); iconv_t iconv_open (const char *<[to]>, const char *<[from]>);
int iconv_close (iconv_t <[cd]>); int iconv_close (iconv_t <[cd]>);
size_t iconv (iconv_t <[cd]>, char **__restrict<[inbuf]>, size_t iconv (iconv_t <[cd]>, char **__restrict<[inbuf]>,
size_t *__restrict<[inbytesleft]>, size_t *__restrict <[inbytesleft]>,
char **__restrict<[outbuf]>, char **__restrict <[outbuf]>,
size_t *__restrict<[outbytesleft]>), size_t *__restrict <[outbytesleft]>),
iconv_t _iconv_open_r (struct _reent *<[rptr]>, iconv_t _iconv_open_r (struct _reent *<[rptr]>,
const char *<[to]>, const char *<[from]>); const char *<[to]>, const char *<[from]>);

View File

@ -25,8 +25,8 @@ INDEX
ANSI_SYNOPSIS ANSI_SYNOPSIS
#include <time.h> #include <time.h>
size_t strftime(char *restrict<[s]>, size_t <[maxsize]>, size_t strftime(char *restrict<[s]>, size_t <[maxsize]>,
const char *restrict<[format]>, const char *restrict <[format]>,
const struct tm *restrict<[timp]>); const struct tm *restrict <[timp]>);
TRAD_SYNOPSIS TRAD_SYNOPSIS
#include <time.h> #include <time.h>