Fix #112: Use yasm__strcasecmp instead of strcasecmp.

svn path=/trunk/yasm/; revision=1907
multiarch
Peter Johnson 18 years ago
parent 49a1a96813
commit 66bcd03658
  1. 2
      libyasm/hamt.c

@ -133,7 +133,7 @@ HAMT_create(int nocase, /*@exits@*/ void (*error_func)
if (nocase) {
hamt->HashKey = HashKey_nocase;
hamt->ReHashKey = ReHashKey_nocase;
hamt->CmpKey = strcasecmp;
hamt->CmpKey = yasm__strcasecmp;
} else {
hamt->HashKey = HashKey;
hamt->ReHashKey = ReHashKey;

Loading…
Cancel
Save