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-26 14:38:58 +00:00
parent 4d3c733045
commit 6221252b5e
2 changed files with 5 additions and 5 deletions

View File

@ -45,10 +45,10 @@ ANSI_SYNOPSIS
#include <iconv.h> #include <iconv.h>
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]>);