/* Program 6.2.3 from C++ Programming Lecture notes  */

/* Author: Rob Miller and William Knottenbelt
   Program last changed: 30th September 2001    */

/* This program does nothing yet (not even compile)! */ 

/* Function to input array values */
void no_effect(const int list[]);

/* Function to add two arrays of type "Hours_array" together */
void do_nothing(int list[]);

/* MAIN PROGRAM */
int main()
{
	return 0;
}
/* END OF MAIN PROGRAM */

/* DEFINITION OF FUNCTION "no_effect" */
void no_effect(const int list[])
{
	do_nothing(list);
}
/* END OF FUNCTION DEFINITION */

/* DEFINITION OF FUNCTION "do_nothing" */
void do_nothing(int list[])
{
	;
}
/* END OF FUNCTION DEFINITION */


