| # | Line 39 | Line 39 | ecalloc(size_t ne, size_t es) | |
|---|---|---|
| 39 | if (!ne | !es) | |
| 40 | return(NULL); | |
| 41 | ||
| 42 | < | if ((cp = ecalloc(ne, es)) != NULL) |
| 42 | > | if ((cp = calloc(ne, es)) != NULL) |
| 43 | return(cp); | |
| 44 | ||
| 45 | eputs("Out of memory in ecalloc\n"); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |