| 1024 | failure. */ |
| 1025 | |
| 1026 | static FILE * |
| 1027 | xfopen (char const *file, char const *how) |
| 1028 | { |
| 1029 | FILE *fp = stream_open (file, how); |
| 1030 | if (!fp) |
| 1031 | sort_die (_("open failed"), file); |
| 1032 | return fp; |
| 1033 | } |
| 1034 | |
| 1035 | /* Close FP, whose name is FILE, and report any errors. */ |
| 1036 |
no test coverage detected