* out_of_memory * * We ran out of memory. Print an error message and die. ****************************************************************************/
| 33 | * We ran out of memory. Print an error message and die. |
| 34 | ****************************************************************************/ |
| 35 | noreturn void out_of_memory(void) |
| 36 | { |
| 37 | fprintf(stderr, "%s: Out of memory.\n", prog_name); |
| 38 | exit(1); |
| 39 | } |
| 40 | |
| 41 | /**************************************************************************** |
| 42 | * usage |
no test coverage detected