Loading...
string/FreeBSD/strcasecmp.c Libc-1725.40.4 Libc-825.26
--- Libc/Libc-1725.40.4/string/FreeBSD/strcasecmp.c
+++ Libc/Libc-825.26/string/FreeBSD/strcasecmp.c
@@ -41,7 +41,9 @@
 typedef unsigned char u_char;
 
 int
-strcasecmp_l(const char *s1, const char *s2, locale_t loc)
+strcasecmp_l(s1, s2, loc)
+	const char *s1, *s2;
+	locale_t loc;
 {
 	const u_char
 			*us1 = (const u_char *)s1,
@@ -61,7 +63,10 @@
 }
 
 int
-strncasecmp_l(const char *s1, const char *s2, size_t n, locale_t loc)
+strncasecmp_l(s1, s2, n, loc)
+	const char *s1, *s2;
+	size_t n;
+	locale_t loc;
 {
 	NORMALIZE_LOCALE(loc);
 	if (n != 0) {