Add restrict qualifiers.
I missed this file in my previous commit.
This commit is contained in:
parent
69099ba2ec
commit
9c5cb6d8ae
@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <string.h>
|
||||
|
||||
char *
|
||||
stpcpy(char * to, const char * from)
|
||||
stpcpy(char * __restrict to, const char * __restrict from)
|
||||
{
|
||||
|
||||
for (; (*to = *from); ++from, ++to);
|
||||
|
Loading…
x
Reference in New Issue
Block a user