aboutsummaryrefslogtreecommitdiffstats
path: root/lwlib
diff options
context:
space:
mode:
authorRoland McGrath <[email protected]>1994-02-08 22:46:59 +0000
committerRoland McGrath <[email protected]>1994-02-08 22:46:59 +0000
commited9c1473199b4dba4c4c9188211cbbd189652a1b (patch)
treee56b125434ba0383ec0de492b11c158afca7c5fa /lwlib
parentc6f7982f439b770453e6aaee93053b9a11db61cb (diff)
*** empty log message ***
Diffstat (limited to 'lwlib')
-rw-r--r--lwlib/lwlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c
index 2f1e93ec34..e6af711e69 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;
}