** Close an output file, assuming it is not stderr or stdout */
| 15007 | ** Close an output file, assuming it is not stderr or stdout |
| 15008 | */ |
| 15009 | static void output_file_close(FILE *f){ |
| 15010 | if( f && f!=stdout && f!=stderr ) fclose(f); |
| 15011 | } |
| 15012 | |
| 15013 | /* |
| 15014 | ** Try to open an output file. The names "stdout" and "stderr" are |
no outgoing calls
no test coverage detected