/* @(#)close_files.c 2.1 93/05/18 */ /******************************************************************************/ /* function : close_files.c */ /* */ /* subsystem : chgen */ /* */ /* input : */ /* */ /* output : (closes all output files) */ /* */ /* returns : void */ /* */ /* author : Steve Smith / Craig Smith */ /* */ /* created : July, 1991 */ /* */ /* revisions : */ /* */ /* description : This routine simply closes all output files. */ /* */ /******************************************************************************/ #include #include #include "chgen_define.h" #include "chgen_externs.h" void close_files() { static char rcsid[] = ""; fclose(schh_fp); fclose(prload_fp); fclose(prdump_fp); fclose(prfree_fp); fclose(prdel_fp); fclose(prstats_fp); fclose(schtxt_fp); fclose(prlog_fp); return; }