diff options
Diffstat (limited to 'lib/libc/string/wmemmove.c')
-rw-r--r-- | lib/libc/string/wmemmove.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libc/string/wmemmove.c b/lib/libc/string/wmemmove.c index 5143ab46a448..2b9e2752f162 100644 --- a/lib/libc/string/wmemmove.c +++ b/lib/libc/string/wmemmove.c @@ -46,8 +46,5 @@ wmemmove(d, s, n) size_t n; { - _DIAGASSERT(d != NULL); - _DIAGASSERT(s != NULL); - return (wchar_t *)memmove(d, s, n * sizeof(wchar_t)); } |