/* libhello_test - A sample application that
 * uses the demo shared library ~/lib/libhello.so.1.0.0 .
 *
 * COMPILE DIRECTIONS:
 *  Make sure libhello.so* is in a standard directory, or
 *  use the gcc command line argument "-L <dir>":
 *  Also make sure libhello.h is in a standard include directory
 *  (such as the current directory) or add "-I<dir>":
 *
 *  gcc -Wall -L ~/lib -o libhello_test libhello_test.c -lhello
 *
 * If this fails to work make sure the library is chmod a+rx,
 * and that all needed symlinks are there.  (Note ldconfig -nv dir
 * doesn't create all required links.  I don't know why not, I
 * probably don't create the library correctly.)
 *
 * Written 7/2005 by Wayne Pollock, Tampa Florida USA.
 */

 #include "libhello.h"

 int main ( void )
 {
   say_hello( "World" );
   return 0;
}
