/**************************************************************************/
/***                                                                    ***/
/***                             close_down()                           ***/
/***       Closes all input and output raster files and frees memory.	***/
/***                   Jo Wood, V1.1, 13th September, 1995 		***/
/***                                                                    ***/
/**************************************************************************/

#include "example.h"

close_down()
{

    /* Close connection with existing input rasters */

    G_unopen_cell(fd_rast1_in);
    G_unopen_cell(fd_rast2_in);

    /* Write output raster file and close connection. */

    G_close_cell(fd_out);
}

