summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
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 1568c2ce1d304..e12d8dfdf7c26 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 eb2674384bc65..3a81488bdae3c 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 26ea03d618511..89ce020f87965 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 9e72738ffed43..577796352daf5 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 1035cb016ece5..57a804c0c639f 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 9edfbdbd96d8a..6466f0690fd7b 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 575b264cdca7d..1b9459a0c19e8 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 82ff51bf46c71..1636d98cd2762 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 d102788928470..ba49a9eab98aa 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 81bc86c0de531..d16f0739320c8 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 dc77ee377acc5..28e2e5b33d6ad 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 2a24d0566a515..7315c4445dda2 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 b7b236b68a144..9294b8d611ebb 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 7fc996a781a87..584a9d352850c 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 8d37979f30e32..99e8ac00c0c93 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 2aaec09203bac..2d96708fd6c4d 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 4491cf0622a0b..c9a9095b8eb23 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 6d11e459de458..38d563d8053cb 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 e4e80b25b5156..6b3ee94e3a903 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 1680cdbe0e8df..b923f14637f10 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 *