From 6560bf44e92e4d136ec44a5e9744caec257046fc Mon Sep 17 00:00:00 2001 From: ru Date: Wed, 16 May 2001 14:34:47 +0000 Subject: Unbreak world; _DIAGASSERT macro is not available in FreeBSD. --- lib/libc/string/wmemset.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/libc/string/wmemset.c') diff --git a/lib/libc/string/wmemset.c b/lib/libc/string/wmemset.c index 7e36d1d..c456385 100644 --- a/lib/libc/string/wmemset.c +++ b/lib/libc/string/wmemset.c @@ -47,8 +47,6 @@ wmemset(s, c, n) size_t i; wchar_t *p; - _DIAGASSERT(s != NULL); - p = (wchar_t *)s; for (i = 0; i < n; i++) { *p = c; -- cgit v1.1