//One of the headers used in a static library.
//
//First, compile it with
//
//$ g++ -c -o johnpaul.o johnpaul.cc
//
//OPTIONS:    -c do not run the linker
//            -o name of the object file
//
//This will be made into a STATIC LIBRARY with the following commands:
//
//$ ar ru libjohnpaul.a john.o paul.o johnpaul.o
//$ ranlib libjohnpaul.a

#include "john.hh"
#include "paul.hh"
#include "johnpaul.hh"

void johnpaul( )
{
    john( );
    paul( );
}
