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/strncpy.c')
-rw-r--r--newlib/libc/string/strncpy.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/newlib/libc/string/strncpy.c b/newlib/libc/string/strncpy.c
index 7c1973ba6..ff5d0d409 100644
--- a/newlib/libc/string/strncpy.c
+++ b/newlib/libc/string/strncpy.c
@@ -7,7 +7,8 @@ INDEX
ANSI_SYNOPSIS
#include <string.h>
- char *strncpy(char *<[dst]>, const char *<[src]>, size_t <[length]>);
+ char *strncpy(char *restrict <[dst]>, const char *restrict <[src]>,
+ size_t <[length]>);
TRAD_SYNOPSIS
#include <string.h>
@@ -66,8 +67,8 @@ QUICKREF
char *
_DEFUN (strncpy, (dst0, src0),
- char *dst0 _AND
- _CONST char *src0 _AND
+ char *__restrict dst0 _AND
+ _CONST char *__restrict src0 _AND
size_t count)
{
#if defined(PREFER_SIZE_OVER_SPEED) || defined(__OPTIMIZE_SIZE__)