=========================================================================== * Display error message and exit */
(msg)
| 349 | * Display error message and exit |
| 350 | */ |
| 351 | void error(msg) |
| 352 | const char *msg; |
| 353 | { |
| 354 | fprintf(stderr, "%s: %s\n", prog, msg); |
| 355 | exit(1); |
| 356 | } |
| 357 | |
| 358 | /* =========================================================================== |
| 359 | * Compress input to output then close both files. |
no outgoing calls
no test coverage detected