diff options
Diffstat (limited to 'src/string/stpcpy.c')
| -rw-r--r-- | src/string/stpcpy.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/stpcpy.c b/src/string/stpcpy.c index 10ca4933..da96f215 100644 --- a/src/string/stpcpy.c +++ b/src/string/stpcpy.c @@ -9,7 +9,7 @@  #define HIGHS (ONES * (UCHAR_MAX/2+1))  #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS) -char *__stpcpy(char *d, const char *s) +char *__stpcpy(char *restrict d, const char *restrict s)  {  	size_t *wd;  	const size_t *ws;  | 
