# HG changeset patch # User Roland McGrath # Date 760747619 0 # Node ID 4934e5381fb2ea84e4bb7fb4c7ffd1466b337dea # Parent f2e341b1f9084f848e2071bfe3f84a2f9627adec *** empty log message *** diff -r f2e341b1f908 -r 4934e5381fb2 lwlib/lwlib.c --- 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; }