/************************************************************************
*									*
*                     Template File for C Programs                      *
*									*
************************************************************************/

/*  Author:   John Zaitseff <J.Zaitseff@unsw.edu.au>
    Date:     26th February, 2003
    Version:  1.5

    This file is meant to be used as a template (in other words, a starting
    point) for any C language programs that you write.  Modify it to suit
    your needs.

    Ideally, every C language program module should be well-documented,
    with an over-all description included in the initial comments.
*/


#include "template.h"


/*  ---------------------------------------------------------------------
    Function:    main           - Main program entry point
    Parameters:  (none)         - No parameters are passed
    Returns:     int            - Error code, 0 for success

    Description of the function "main".  Standard C language "main"
    functions have "int argc, char *argv[]" as their parameters.  Only
    embedded-type programs, such as this one, have "void".
*/

int main (void)
{
    return 0;					/* Return successfully */
}

