summaryrefslogtreecommitdiff
path: root/lib/libc/string/wcscmp.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/wcscmp.c
parentbfd122084264087c2eba6397857476b4dfb6a5e1 (diff)
Notes
Diffstat (limited to 'lib/libc/string/wcscmp.c')
-rw-r--r--lib/libc/string/wcscmp.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libc/string/wcscmp.c b/lib/libc/string/wcscmp.c
index af5e21235f4b..d0eb1ee9f72c 100644
--- a/lib/libc/string/wcscmp.c
+++ b/lib/libc/string/wcscmp.c
@@ -58,9 +58,6 @@ wcscmp(s1, s2)
const wchar_t *s1, *s2;
{
- _DIAGASSERT(s1 != NULL);
- _DIAGASSERT(s2 != NULL);
-
while (*s1 == *s2++)
if (*s1++ == 0)
return (0);