aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/iconv
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-26 14:38:58 +0000
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-26 14:38:58 +0000
commit6221252b5ecd918cb026e0f5595193e33798ca8d (patch)
tree2437cdb1f31800567f4febaaac17504fdabfa61c /newlib/libc/iconv
parent4d3c733045cfc14bb1b472a064fd69044f56ca51 (diff)
downloadnewlib-6221252b5ecd918cb026e0f5595193e33798ca8d.zip
newlib-6221252b5ecd918cb026e0f5595193e33798ca8d.tar.gz
newlib-6221252b5ecd918cb026e0f5595193e33798ca8d.tar.bz2
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.
Diffstat (limited to 'newlib/libc/iconv')
-rw-r--r--newlib/libc/iconv/lib/iconv.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/iconv/lib/iconv.c b/newlib/libc/iconv/lib/iconv.c
index ba607c6..f6bf544 100644
--- a/newlib/libc/iconv/lib/iconv.c
+++ b/newlib/libc/iconv/lib/iconv.c
@@ -45,10 +45,10 @@ ANSI_SYNOPSIS
#include <iconv.h>
iconv_t iconv_open (const char *<[to]>, const char *<[from]>);
int iconv_close (iconv_t <[cd]>);
- size_t iconv (iconv_t <[cd]>, char **__restrict<[inbuf]>,
- size_t *__restrict <[inbytesleft]>,
- char **__restrict <[outbuf]>,
- size_t *__restrict <[outbytesleft]>),
+ size_t iconv (iconv_t <[cd]>, char **restrict <[inbuf]>,
+ size_t *restrict <[inbytesleft]>,
+ char **restrict <[outbuf]>,
+ size_t *restrict <[outbytesleft]>),
iconv_t _iconv_open_r (struct _reent *<[rptr]>,
const char *<[to]>, const char *<[from]>);