rename ealloc to emalloc

This commit is contained in:
Quentin Carbonneaux 2015-10-08 14:05:13 -04:00
parent 2205930c37
commit bf3e6753f3
3 changed files with 6 additions and 6 deletions

View file

@ -188,7 +188,7 @@ limit(Bits *b, int k, Bits *fst)
return 0;
if (nt > maxt) {
free(tarr);
tarr = ealloc(nt * sizeof tarr[0]);
tarr = emalloc(nt * sizeof tarr[0]);
maxt = nt;
}
i = 0;