Throughout, keep function definitions and declarations in sync with

newlib in terms of C99 "restrict" keyword.
This commit is contained in:
Corinna Vinschen
2013-11-25 11:38:08 +00:00
parent bd1af1cab5
commit 3073f26d6a
15 changed files with 47 additions and 30 deletions

View File

@ -793,7 +793,7 @@ memset (void *s, int c, size_t n)
}
extern "C" void *
memcpy(void *dest, const void *src, size_t n)
memcpy(void *__restrict dest, const void *__restrict src, size_t n)
{
RtlCopyMemory (dest, src, n);
return dest;