diff options
author | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-26 14:38:58 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@oarcorp.com> | 2013-11-26 14:38:58 +0000 |
commit | 6221252b5ecd918cb026e0f5595193e33798ca8d (patch) | |
tree | 2437cdb1f31800567f4febaaac17504fdabfa61c | |
parent | 4d3c733045cfc14bb1b472a064fd69044f56ca51 (diff) | |
download | cygnal-6221252b5ecd918cb026e0f5595193e33798ca8d.tar.gz cygnal-6221252b5ecd918cb026e0f5595193e33798ca8d.tar.bz2 cygnal-6221252b5ecd918cb026e0f5595193e33798ca8d.zip |
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.
-rw-r--r-- | newlib/libc/iconv/lib/iconv.c | 8 | ||||
-rw-r--r-- | newlib/libc/time/strftime.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/iconv/lib/iconv.c b/newlib/libc/iconv/lib/iconv.c index ba607c653..f6bf5444e 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]>); diff --git a/newlib/libc/time/strftime.c b/newlib/libc/time/strftime.c index 195956fbd..f95a85dce 100644 --- a/newlib/libc/time/strftime.c +++ b/newlib/libc/time/strftime.c @@ -24,7 +24,7 @@ INDEX ANSI_SYNOPSIS #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 struct tm *restrict <[timp]>); |