summaryrefslogtreecommitdiffstats
path: root/lib/libc/string
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-09-21 00:29:23 +0000
committertjr <tjr@FreeBSD.org>2002-09-21 00:29:23 +0000
commitb1352d9ad47bf6b13c942fab9954a08164bb3b0e (patch)
tree57cc90380d26af18cc99bda2d87628dbef5ac3c0 /lib/libc/string
parentf23fc674e9cd42f88960deb9c4031f6c3c63adba (diff)
downloadFreeBSD-src-b1352d9ad47bf6b13c942fab9954a08164bb3b0e.zip
FreeBSD-src-b1352d9ad47bf6b13c942fab9954a08164bb3b0e.tar.gz
Remove unnecessary #include <assert.h>; it was used to bring in the
_DIAGASSERT macro on NetBSD, but we don't need it.
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/wcscat.c1
-rw-r--r--lib/libc/string/wcschr.c1
-rw-r--r--lib/libc/string/wcscmp.c1
-rw-r--r--lib/libc/string/wcscpy.c1
-rw-r--r--lib/libc/string/wcscspn.c1
-rw-r--r--lib/libc/string/wcslcat.c1
-rw-r--r--lib/libc/string/wcslcpy.c1
-rw-r--r--lib/libc/string/wcslen.c1
-rw-r--r--lib/libc/string/wcsncat.c1
-rw-r--r--lib/libc/string/wcsncmp.c1
-rw-r--r--lib/libc/string/wcsncpy.c1
-rw-r--r--lib/libc/string/wcspbrk.c1
-rw-r--r--lib/libc/string/wcsrchr.c1
-rw-r--r--lib/libc/string/wcsspn.c1
-rw-r--r--lib/libc/string/wcsstr.c1
-rw-r--r--lib/libc/string/wmemchr.c1
-rw-r--r--lib/libc/string/wmemcmp.c1
-rw-r--r--lib/libc/string/wmemcpy.c1
-rw-r--r--lib/libc/string/wmemmove.c1
-rw-r--r--lib/libc/string/wmemset.c1
20 files changed, 0 insertions, 20 deletions
diff --git a/lib/libc/string/wcscat.c b/lib/libc/string/wcscat.c
index 1568c2c..e12d8df 100644
--- a/lib/libc/string/wcscat.c
+++ b/lib/libc/string/wcscat.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcscat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wcschr.c b/lib/libc/string/wcschr.c
index eb26743..3a81488 100644
--- a/lib/libc/string/wcschr.c
+++ b/lib/libc/string/wcschr.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcschr.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wcscmp.c b/lib/libc/string/wcscmp.c
index 26ea03d..89ce020 100644
--- a/lib/libc/string/wcscmp.c
+++ b/lib/libc/string/wcscmp.c
@@ -43,7 +43,6 @@ __RCSID("$NetBSD$");
#endif /* LIBC_SCCS and not lint */
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
/*
diff --git a/lib/libc/string/wcscpy.c b/lib/libc/string/wcscpy.c
index 9e72738..5777963 100644
--- a/lib/libc/string/wcscpy.c
+++ b/lib/libc/string/wcscpy.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcscpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wcscspn.c b/lib/libc/string/wcscspn.c
index 1035cb0..57a804c 100644
--- a/lib/libc/string/wcscspn.c
+++ b/lib/libc/string/wcscspn.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcscspn.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
size_t
diff --git a/lib/libc/string/wcslcat.c b/lib/libc/string/wcslcat.c
index 9edfbdb..6466f06 100644
--- a/lib/libc/string/wcslcat.c
+++ b/lib/libc/string/wcslcat.c
@@ -36,7 +36,6 @@ __RCSID("$NetBSD: wcslcat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>
-#include <assert.h>
#include <wchar.h>
/*
diff --git a/lib/libc/string/wcslcpy.c b/lib/libc/string/wcslcpy.c
index 575b264..1b9459a 100644
--- a/lib/libc/string/wcslcpy.c
+++ b/lib/libc/string/wcslcpy.c
@@ -36,7 +36,6 @@ __RCSID("$NetBSD: wcslcpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
__FBSDID("$FreeBSD$");
#include <sys/types.h>
-#include <assert.h>
#include <wchar.h>
/*
diff --git a/lib/libc/string/wcslen.c b/lib/libc/string/wcslen.c
index 82ff51b..1636d98 100644
--- a/lib/libc/string/wcslen.c
+++ b/lib/libc/string/wcslen.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcslen.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
size_t
diff --git a/lib/libc/string/wcsncat.c b/lib/libc/string/wcsncat.c
index d102788..ba49a9e 100644
--- a/lib/libc/string/wcsncat.c
+++ b/lib/libc/string/wcsncat.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcsncat.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wcsncmp.c b/lib/libc/string/wcsncmp.c
index 81bc86c..d16f073 100644
--- a/lib/libc/string/wcsncmp.c
+++ b/lib/libc/string/wcsncmp.c
@@ -40,7 +40,6 @@ __RCSID("$NetBSD$");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
int
diff --git a/lib/libc/string/wcsncpy.c b/lib/libc/string/wcsncpy.c
index dc77ee3..28e2e5b 100644
--- a/lib/libc/string/wcsncpy.c
+++ b/lib/libc/string/wcsncpy.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcsncpy.c,v 1.1 2000/12/23 23:14:36 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wcspbrk.c b/lib/libc/string/wcspbrk.c
index 2a24d05..7315c44 100644
--- a/lib/libc/string/wcspbrk.c
+++ b/lib/libc/string/wcspbrk.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcspbrk.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wcsrchr.c b/lib/libc/string/wcsrchr.c
index b7b236b..9294b8d 100644
--- a/lib/libc/string/wcsrchr.c
+++ b/lib/libc/string/wcsrchr.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcsrchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wcsspn.c b/lib/libc/string/wcsspn.c
index 7fc996a..584a9d3 100644
--- a/lib/libc/string/wcsspn.c
+++ b/lib/libc/string/wcsspn.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcsspn.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
size_t
diff --git a/lib/libc/string/wcsstr.c b/lib/libc/string/wcsstr.c
index 8d37979..99e8ac0 100644
--- a/lib/libc/string/wcsstr.c
+++ b/lib/libc/string/wcsstr.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wcsstr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wmemchr.c b/lib/libc/string/wmemchr.c
index 2aaec09..2d96708 100644
--- a/lib/libc/string/wmemchr.c
+++ b/lib/libc/string/wmemchr.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wmemchr.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
diff --git a/lib/libc/string/wmemcmp.c b/lib/libc/string/wmemcmp.c
index 4491cf0..c9a9095 100644
--- a/lib/libc/string/wmemcmp.c
+++ b/lib/libc/string/wmemcmp.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wmemcmp.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
int
diff --git a/lib/libc/string/wmemcpy.c b/lib/libc/string/wmemcpy.c
index 6d11e45..38d563d 100644
--- a/lib/libc/string/wmemcpy.c
+++ b/lib/libc/string/wmemcpy.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wmemcpy.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <string.h>
#include <wchar.h>
diff --git a/lib/libc/string/wmemmove.c b/lib/libc/string/wmemmove.c
index e4e80b2..6b3ee94 100644
--- a/lib/libc/string/wmemmove.c
+++ b/lib/libc/string/wmemmove.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wmemmove.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <string.h>
#include <wchar.h>
diff --git a/lib/libc/string/wmemset.c b/lib/libc/string/wmemset.c
index 1680cdb..b923f14 100644
--- a/lib/libc/string/wmemset.c
+++ b/lib/libc/string/wmemset.c
@@ -34,7 +34,6 @@ __RCSID("$NetBSD: wmemset.c,v 1.1 2000/12/23 23:14:37 itojun Exp $");
#endif
__FBSDID("$FreeBSD$");
-#include <assert.h>
#include <wchar.h>
wchar_t *
OpenPOWER on IntegriCloud