| 2202 | */ |
| 2203 | |
| 2204 | static char *DbugMalloc(size_t size) |
| 2205 | { |
| 2206 | register char *new_malloc; |
| 2207 | |
| 2208 | if (!(new_malloc= (char*) malloc(size))) |
| 2209 | DbugExit("out of memory"); |
| 2210 | return new_malloc; |
| 2211 | } |
| 2212 | |
| 2213 | |
| 2214 | /* |
no test coverage detected