Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-26 18:38:58 +0400
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-11-26 18:38:58 +0400
commit6221252b5ecd918cb026e0f5595193e33798ca8d (patch)
tree2437cdb1f31800567f4febaaac17504fdabfa61c
parent4d3c733045cfc14bb1b472a064fd69044f56ca51 (diff)
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.c8
-rw-r--r--newlib/libc/time/strftime.c2
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]>);