]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRoland McGrath <roland@gnu.org>
Tue, 8 Feb 1994 22:46:59 +0000 (22:46 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 8 Feb 1994 22:46:59 +0000 (22:46 +0000)
lwlib/lwlib.c

index 2f1e93ec3433d14c4a58d0886a8f889cc4824350..e6af711e6977a8b5b47858071ca199e8e3d34e35 100644 (file)
@@ -86,7 +86,7 @@ safe_strdup (s)
 /* 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 @@ find_in_table (type, table)
 {
   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;
 }