From ed9c1473199b4dba4c4c9188211cbbd189652a1b Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 8 Feb 1994 22:46:59 +0000 Subject: *** empty log message *** --- lwlib/lwlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lwlib/lwlib.c') diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index 2f1e93ec343..e6af711e697 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c @@ -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; } -- cgit v1.2.3