//One of the headers used in a static library.
//
//First, compile it with
//
//$ g++ -c -o george.o george.cc
//
//OPTIONS:    -c do not run the linker
//            -o name of the object file

#include <iostream>
#include "george.hh"

void george( )
{
    std::cout << "George, ";
}
