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