changeset 5853:4934e5381fb2

*** empty log message ***
author Roland McGrath <roland@gnu.org>
date Tue, 08 Feb 1994 22:46:59 +0000
parents f2e341b1f908
children 9d1ae808403b
files lwlib/lwlib.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lwlib/lwlib.c	Tue Feb 08 22:42:28 1994 +0000
+++ b/lwlib/lwlib.c	Tue Feb 08 22:46:59 1994 +0000
@@ -86,7 +86,7 @@
 /* Like strcmp but ignore differences in case.  */
 
 static int
-strcasecmp (s1, s2)
+my_strcasecmp (s1, s2)
      char *s1, *s2;
 {
   while (1)
@@ -671,7 +671,7 @@
 {
   widget_creation_entry* cur;
   for (cur = table; cur->type; cur++)
-    if (!strcasecmp (type, cur->type))
+    if (!my_strcasecmp (type, cur->type))
       return cur->function;
   return NULL;
 }