/* File: main2.c

   This is a simple main program.
   It's main purpose is to include the header
   files header.h and header2.h to show how 
   #include and #ifndef work.
*/

#include "header.h"
#include "header2.h"

main() {
  int n ;

  n = sum(3, 4) ;
  n = diff(5,7) ;
}
