/*
* sample code for creating a shared library on HP-UX
*
* cc +z -c share.c -o share.o
* ld -b share.o -o share.sl
*
* kishan@hackorama.com ( www.hackorama.com ) Feb 2001
*
*/
#include <stdio.h>
void
share( int value )
{
fprintf( stdout, "\n\nthe answer is %d\n\n", value );
}