| # | Line 26 | Line 26 | emalloc(unsigned int n) | |
|---|---|---|
| 26 | ||
| 27 | eputs("Out of memory in emalloc\n"); | |
| 28 | quit(1); | |
| 29 | + | return NULL; /* pro forma return */ |
| 30 | } | |
| 31 | ||
| 32 | ||
| # | Line 68 | Line 69 | erealloc(register char *cp, unsigned int n) | |
| 69 | ||
| 70 | eputs("Out of memory in erealloc\n"); | |
| 71 | quit(1); | |
| 72 | + | return NULL; /* pro forma return */ |
| 73 | } | |
| 74 | ||
| 75 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |