aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/string/wcsstr.c
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2001-05-16 14:34:47 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2001-05-16 14:34:47 +0000
commit9d3618b99999a5d2d1ea3f608025fceaa7e19f6e (patch)
tree6a9a82c28395e8bc55692f8f338e03ac291ddcb0 /lib/libc/string/wcsstr.c
parentbfd122084264087c2eba6397857476b4dfb6a5e1 (diff)
downloadsrc-9d3618b99999a5d2d1ea3f608025fceaa7e19f6e.tar.gz
src-9d3618b99999a5d2d1ea3f608025fceaa7e19f6e.zip
Unbreak world; _DIAGASSERT macro is not available in FreeBSD.
Notes
Notes: svn path=/head/; revision=76683
Diffstat (limited to 'lib/libc/string/wcsstr.c')
-rw-r--r--lib/libc/string/wcsstr.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libc/string/wcsstr.c b/lib/libc/string/wcsstr.c
index 2026352fed4d..f6eb89df92cb 100644
--- a/lib/libc/string/wcsstr.c
+++ b/lib/libc/string/wcsstr.c
@@ -47,9 +47,6 @@ wcsstr(big, little)
const wchar_t *q;
const wchar_t *r;
- _DIAGASSERT(big != NULL);
- _DIAGASSERT(little != NULL);
-
if (!*little) {
/* LINTED interface specification */
return (wchar_t *)big;