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:
Diffstat (limited to 'newlib/libc/string/strxfrm.c')
-rw-r--r--newlib/libc/string/strxfrm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/newlib/libc/string/strxfrm.c b/newlib/libc/string/strxfrm.c
index 65ed4f1b1..9d0ab882b 100644
--- a/newlib/libc/string/strxfrm.c
+++ b/newlib/libc/string/strxfrm.c
@@ -7,7 +7,8 @@ INDEX
ANSI_SYNOPSIS
#include <string.h>
- size_t strxfrm(char *<[s1]>, const char *<[s2]>, size_t <[n]>);
+ size_t strxfrm(char *restrict <[s1]>, const char *restrict <[s2]>,
+ size_t <[n]>);
TRAD_SYNOPSIS
#include <string.h>
@@ -52,8 +53,8 @@ QUICKREF
size_t
_DEFUN (strxfrm, (s1, s2, n),
- char *s1 _AND
- _CONST char *s2 _AND
+ char *__restrict s1 _AND
+ _CONST char *__restrict s2 _AND
size_t n)
{
size_t res;